git-am.txt is no stub anymore
[git/dscho.git] / t / t3200-branch.sh
blob5f98f64de16560d9f6599623e7424efac9dc407f
1 #!/bin/sh
3 # Copyright (c) 2005 Amos Waterland
6 test_description='git branch --foo should not create bogus branch
8 This test runs git branch --help and checks that the argument is properly
9 handled. Specifically, that a bogus branch is not created.
11 . ./test-lib.sh
13 test_expect_success \
14 'prepare an trivial repository' \
15 'echo Hello > A &&
16 git-update-index --add A &&
17 git-commit -m "Initial commit."'
19 test_expect_failure \
20 'git branch --help should return error code' \
21 'git-branch --help'
23 test_expect_failure \
24 'git branch --help should not have created a bogus branch' \
25 'test -f .git/refs/heads/--help'
27 test_done