Signed-off-by: Yann Dirson <ydirson@xxxxxxxxxx> --- t/t1003-branch-delete.sh | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/t/t1003-branch-delete.sh b/t/t1003-branch-delete.sh new file mode 100755 index 0000000..8625cc5 --- /dev/null +++ b/t/t1003-branch-delete.sh @@ -0,0 +1,40 @@ +#!/bin/sh +# +# Copyright (c) 2006 Catalin Marinas +# + +test_description='Branch deletion.' + +. ./test-lib.sh + +test_expect_success \ + 'Create a new branch' \ + ' + stg branch --create new && + git rev-parse new~0 + ' + +test_expect_success \ + 'Delete the new branch' \ + 'stg branch --delete new' + +test_expect_failure \ + 'Check the deleted branch is gone' \ + 'git rev-parse new~0' + +test_expect_success \ + 'Rename master branch, and create a new branch' \ + ' + git branch -m master a && + stg branch --create b + ' + +test_expect_success \ + 'Delete the new branch' \ + 'stg branch --delete b' + +test_expect_failure \ + 'Check the deleted branch is gone' \ + 'git rev-parse b~0' + +test_done - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html