diff options
author | Stefan Naewe <stefan.naewe@gmail.com> | 2011-11-02 16:07:05 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-02 12:36:56 -0700 |
commit | db85b3a74fd1c50f007c198e4dc7265fdc1f2749 (patch) | |
tree | 902c02c7f3c3c03cfa4e675fef1c59f5b3fa4991 | |
parent | branch -m: handle no arg properly (diff) | |
download | tgif-db85b3a74fd1c50f007c198e4dc7265fdc1f2749.tar.xz |
t3200: add test case for 'branch -m'
Signed-off-by: Stefan Naewe <stefan.naewe@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t3200-branch.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index 2f5eada0d2..bc73c2099b 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -75,6 +75,11 @@ test_expect_success \ git branch l' test_expect_success \ + 'git branch -m dumps usage' \ + 'test_expect_code 129 git branch -m 2>err && + grep "[Uu]sage: git branch" err' + +test_expect_success \ 'git branch -m m m/m should work' \ 'git branch -l m && git branch -m m m/m && |