On Sat, Jul 31, 2010 at 00:19, Dmitry V. Levin [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Reported-by: Ivan Zakharyaschev <redacted>
Signed-off-by: Dmitry V. Levin <redacted>
---
t/t2018-checkout-branch.sh | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/t/t2018-checkout-branch.sh b/t/t2018-checkout-branch.sh
index 1caffea..4d26b2a 100755
--- a/t/t2018-checkout-branch.sh
+++ b/t/t2018-checkout-branch.sh
@@ -118,7 +118,20 @@ test_expect_success 'checkout -b to an existing branch fails' '
test_must_fail do_checkout branch2 $HEAD2
'
+test_expect_failure 'checkout -b new_branch :/regexp' '
+ # clean up from previous test
+ git reset --hard &&
+
+ do_checkout old_regexp_branch branch1 &&
+ test_commit first '' '' '' &&
+ test_commit second '' '' '' &&
Should note in the commit message or a comment that this test needs to
not create a tag, in case someone wonders down the line what the '' ''
'' ASCII art is all about :)
Looks good otherwise, thanks for patching test_commit.