chiark / gitweb /
Support tags in uncommit - use git_id instead of rev_parse
[stgit] / t / t1005-branch-delete.sh
1 #!/bin/sh
2
3 test_description='Attempt to delete branches'
4
5 . ./test-lib.sh
6
7 stg init
8
9 test_expect_success 'Create a branch (and switch to it)' '
10     stg branch --create foo
11     '
12
13 test_expect_success 'Delete a branch' '
14     stg branch --delete master
15     '
16
17 test_expect_success 'Make sure the branch ref was deleted' '
18     [ -z "$(git show-ref | grep master | tee /dev/stderr)" ]
19     '
20
21 test_expect_success 'Make sure the branch config was deleted' '
22     [ -z "$(git config -l | grep branch\\.master | tee /dev/stderr)" ]
23     '
24
25 test_expect_success 'Make sure the branch files were deleted' '
26     [ -z "$(find .git -type f | grep master | tee /dev/stderr)" ]
27     '
28
29 test_done