Add simple test for "stg branch --delete"
authorKarl Hasselström <kha@treskal.com>
Sat, 22 Sep 2007 08:23:37 +0000 (10:23 +0200)
committerKarl Hasselström <kha@treskal.com>
Sat, 22 Sep 2007 08:40:27 +0000 (10:40 +0200)
Signed-off-by: Karl Hasselström <kha@treskal.com>
t/t1005-branch-delete.sh [new file with mode: 0755]

diff --git a/t/t1005-branch-delete.sh b/t/t1005-branch-delete.sh
new file mode 100755 (executable)
index 0000000..7a0872e
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+test_description='Attempt to delete branches'
+
+. ./test-lib.sh
+
+stg init
+
+test_expect_success 'Create a branch (and switch to it)' '
+    stg branch --create foo
+    '
+
+test_expect_success 'Delete a branch' '
+    stg branch --delete master
+    '
+
+test_expect_success 'Make sure the branch ref was deleted' '
+    [ -z "$(git show-ref | grep master | tee /dev/stderr)" ]
+    '
+
+test_expect_success 'Make sure the branch config was deleted' '
+    [ -z "$(git config -l | grep branch\\.master | tee /dev/stderr)" ]
+    '
+
+test_expect_success 'Make sure the branch files were deleted' '
+    [ -z "$(find .git -type f | grep master | tee /dev/stderr)" ]
+    '
+
+test_done