3 # Copyright (c) 2006 Karl Hasselström
6 test_description
='Branch names containing slashes
8 Test a number of operations on a repository that has branch names
9 containing slashes (that is, branches living in a subdirectory of
14 test_expect_success
'Create a patch' \
16 echo "foo" > foo.txt &&
18 stg new foo -m "Add foo.txt" &&
21 test_expect_success
'Try id with non-slashy branch' \
28 test_expect_success
'Clone branch to slashier name' \
29 'stg branch --clone x/y/z'
31 test_expect_success
'Try new id with slashy branch' \
37 test_expect_success
'Try old id with slashy branch' '
38 command_error stg id foo/ &&
39 command_error stg id foo/top &&
40 command_error stg id foo@x/y/z/top
43 test_expect_success
'Create patch in slashy branch' \
44 'echo "bar" >> foo.txt &&
45 stg new bar -m "Add another line" &&
48 test_expect_success
'Rename branches' \
49 'stg branch --rename master goo/gaa &&
50 test_must_fail git show-ref --verify --quiet refs/heads/master &&
51 stg branch --rename goo/gaa x1/x2/x3/x4 &&
52 test_must_fail git show-ref --verify --quiet refs/heads/goo/gaa &&
53 stg branch --rename x1/x2/x3/x4 servant &&
54 test_must_fail git show-ref --verify --quiet refs/heads/x1/x2/x3/x4