From 2bdde74e540085e2c115d6d3dd77afa6d54e78aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Sat, 22 Sep 2007 10:23:37 +0200 Subject: [PATCH] Add simple test for "stg branch --delete" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Karl Hasselström --- t/t1005-branch-delete.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 t/t1005-branch-delete.sh diff --git a/t/t1005-branch-delete.sh b/t/t1005-branch-delete.sh new file mode 100755 index 0000000..7a0872e --- /dev/null +++ b/t/t1005-branch-delete.sh @@ -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 -- 2.11.0