X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/9ab06b9858bbb0196867506724a8d74c8f39e113..a0689e114cdccceedc366e1bfa5be00ad62b2a31:/t/t0002-status.sh?ds=sidebyside diff --git a/t/t0002-status.sh b/t/t0002-status.sh index 2512c53..c978845 100755 --- a/t/t0002-status.sh +++ b/t/t0002-status.sh @@ -54,7 +54,7 @@ cat > expected.txt < output.txt && test_cmp expected.txt output.txt ' @@ -95,7 +95,7 @@ test_expect_success 'Status after refresh' ' test_expect_success 'Add another file' ' echo lajbans > fie && - git add fie && + stg add fie && stg refresh ' @@ -145,7 +145,7 @@ A fie M foo/bar EOF test_expect_success 'Status after resolving the push' ' - git add --update && + stg add --update && stg status > output.txt && test_cmp expected.txt output.txt ' @@ -166,7 +166,7 @@ EOF test_expect_success 'Status of disappeared newborn' ' stg refresh && touch foo/bar && - git add foo/bar && + stg add foo/bar && rm foo/bar && stg status > output.txt && test_cmp expected.txt output.txt @@ -177,8 +177,8 @@ A fay D fie EOF test_expect_success 'Status after renaming a file' ' - git rm foo/bar && - git mv fie fay && + stg rm foo/bar && + stg mv fie fay && stg status > output.txt && test_cmp expected.txt output.txt '