diff --git a/test/bats.bats b/test/bats.bats index 22aa28e..441916e 100755 --- a/test/bats.bats +++ b/test/bats.bats @@ -57,8 +57,8 @@ fixtures bats [ $status -eq 0 ] [ "${lines[0]}" = "1..3" ] [ "${lines[1]}" = "ok 1 a passing test" ] - [ "${lines[2]}" = "ok 2 a skipping test # skip" ] - [ "${lines[3]}" = "ok 3 skip test with a reason # skip for a really good reason" ] + [ "${lines[2]}" = "ok 2 a skipped test with no reason # skip" ] + [ "${lines[3]}" = "ok 3 a skipped test with a reason # skip for a really good reason" ] } @test "summary passing and failing tests" { diff --git a/test/fixtures/bats/passing_and_skipping.bats b/test/fixtures/bats/passing_and_skipping.bats index a58dc36..83fc76b 100644 --- a/test/fixtures/bats/passing_and_skipping.bats +++ b/test/fixtures/bats/passing_and_skipping.bats @@ -2,10 +2,10 @@ true } -@test "a skipping test" { +@test "a skipped test with no reason" { skip } -@test "skip test with a reason" { +@test "a skipped test with a reason" { skip "for a really good reason" }