X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/a639e7bbf3a6396254af76062ee88c22e4373340..9777fa365ba62819bd93a50255e3694c03107e0d:/t/t2500-clean.sh diff --git a/t/t2500-clean.sh b/t/t2500-clean.sh index ad8f892..7f821f5 100755 --- a/t/t2500-clean.sh +++ b/t/t2500-clean.sh @@ -17,11 +17,11 @@ test_expect_success 'Initialize StGit stack' ' ' test_expect_success 'Clean empty patches' ' - [ "$(echo $(stg applied))" = "e0 p0 e1" ] && - [ "$(echo $(stg unapplied))" = "e2" ] && + [ "$(echo $(stg series --applied --noprefix))" = "e0 p0 e1" ] && + [ "$(echo $(stg series --unapplied --noprefix))" = "e2" ] && stg clean && - [ "$(echo $(stg applied))" = "p0" ] && - [ "$(echo $(stg unapplied))" = "" ] + [ "$(echo $(stg series --applied --noprefix))" = "p0" ] && + [ "$(echo $(stg series --unapplied --noprefix))" = "" ] ' test_expect_success 'Create a conflict' ' @@ -32,13 +32,13 @@ test_expect_success 'Create a conflict' ' stg new p2 -m p2 echo quux > foo.txt && stg refresh && - ! stg push + conflict stg push ' test_expect_success 'Make sure conflicting patches are preserved' ' stg clean && - [ "$(echo $(stg applied))" = "p0 p2 p1" ] && - [ "$(echo $(stg unapplied))" = "" ] + [ "$(echo $(stg series --applied --noprefix))" = "p0 p2 p1" ] && + [ "$(echo $(stg series --unapplied --noprefix))" = "" ] ' test_done