diff options
Diffstat (limited to 't/t3200-branch.sh')
-rwxr-xr-x | t/t3200-branch.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh new file mode 100755 index 000000000..6e3639844 --- /dev/null +++ b/t/t3200-branch.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Copyright (c) 2005 Amos Waterland +# + +test_description='git branch --foo should not create bogus branch + +This test runs git branch --help and checks that the argument is properly +handled. Specifically, that a bogus branch is not created. +' +. ./test-lib.sh + +test_expect_success \ + 'prepare an trivial repository' \ + 'echo Hello > A && + ../../git-update-index --add A && + ../../git-commit.sh -m "Initial commit."' + +test_expect_failure \ + 'git branch --help should return error code' \ + '../../git-branch.sh --help' + +test_expect_failure \ + 'git branch --help should not have created a bogus branch' \ + 'test -f .git/refs/heads/--help' + +test_done |