]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t3200-branch.sh
allow git-update-ref create refs with slashes in names
[thirdparty/git.git] / t / t3200-branch.sh
index 5f98f64de16560d9f6599623e7424efac9dc407f..36f7749bed8a40f50f218bbd6c4dcf7763c5abee 100755 (executable)
@@ -24,4 +24,12 @@ test_expect_failure \
     'git branch --help should not have created a bogus branch' \
     'test -f .git/refs/heads/--help'
 
+test_expect_success \
+    'git branch abc should create a branch' \
+    'git-branch abc && test -f .git/refs/heads/abc'
+
+test_expect_success \
+    'git branch a/b/c should create a branch' \
+    'git-branch a/b/c && test -f .git/refs/heads/a/b/c'
+
 test_done