Update changelog for recent commits
[stgit.git] / t / t0000-init.sh
blobc224c0948bad813fbb8c091c0fc72ccd4816bbb1
1 #!/bin/sh
3 # Copyright (c) 2015 Vincent Legoll <vincent.legoll@gmail.com>
5 test_description='Test stgit initialization'
7 . ./test-lib.sh
9 test_expect_success \
10 'check stgit can be run' \
11 'stg version'
13 test_expect_success \
14 'check invalid argument count' \
15 'command_error stg init arg'
17 test_expect_success \
18 'check stgit initialization' \
19 'stg init'
21 test_expect_success \
22 'check stgit duplicated initialization' \
23 'command_error stg init'
25 test_done