X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/09d8f8c55a4193fbabba723c2f257b447c0edaf4..5fd79c5f5aa2ea962162260e88f274983cb1e032:/t/t1002-branch-clone.sh diff --git a/t/t1002-branch-clone.sh b/t/t1002-branch-clone.sh index 12dd0e6..4930c20 100755 --- a/t/t1002-branch-clone.sh +++ b/t/t1002-branch-clone.sh @@ -3,7 +3,7 @@ # Copyright (c) 2006 Catalin Marinas # -test_description='Branch renames. +test_description='Branch cloning. Exercises branch cloning options. ' @@ -14,14 +14,14 @@ test_expect_success \ 'Create a GIT commit' \ ' echo bar > bar.txt && - git add bar.txt && + stg add bar.txt && git commit -a -m bar ' -test_expect_failure \ +test_expect_success \ 'Try to create a patch in a GIT branch' \ ' - stg new p0 -m "p0" + command_error stg new p0 -m "p0" ' test_expect_success \ @@ -29,16 +29,16 @@ test_expect_success \ ' stg branch --clone foo && stg new p1 -m "p1" && - test $(stg applied -c) -eq 1 + test $(stg series --applied -c) -eq 1 ' test_expect_success \ 'Clone the current StGIT branch' \ ' stg branch --clone bar && - test $(stg applied -c) -eq 1 && + test $(stg series --applied -c) -eq 1 && stg new p2 -m "p2" && - test $(stg applied -c) -eq 2 + test $(stg series --applied -c) -eq 2 ' test_done