mirror of
https://github.com/sstephenson/bats.git
synced 2024-11-17 03:32:27 +01:00
Simplify test names
This commit is contained in:
parent
c8d63dd7e0
commit
4a187385d2
|
@ -86,21 +86,21 @@ fixtures bats
|
||||||
[ ${#lines[@]} -eq 3 ]
|
[ ${#lines[@]} -eq 3 ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "setup failure should reuslt in test failure" {
|
@test "setup failure" {
|
||||||
run bats "$FIXTURE_ROOT/failing_setup.bats"
|
run bats "$FIXTURE_ROOT/failing_setup.bats"
|
||||||
[ $status -eq 1 ]
|
[ $status -eq 1 ]
|
||||||
[ "${lines[1]}" = "not ok 1 truth" ]
|
[ "${lines[1]}" = "not ok 1 truth" ]
|
||||||
[ "${lines[2]}" = "# (from function \`setup' in test file $FIXTURE_ROOT/failing_setup.bats, line 2)" ]
|
[ "${lines[2]}" = "# (from function \`setup' in test file $FIXTURE_ROOT/failing_setup.bats, line 2)" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "passing test with teardown failure should result in test failure" {
|
@test "passing test with teardown failure" {
|
||||||
PASS=1 run bats "$FIXTURE_ROOT/failing_teardown.bats"
|
PASS=1 run bats "$FIXTURE_ROOT/failing_teardown.bats"
|
||||||
[ $status -eq 1 ]
|
[ $status -eq 1 ]
|
||||||
[ "${lines[1]}" = "not ok 1 truth" ]
|
[ "${lines[1]}" = "not ok 1 truth" ]
|
||||||
[ "${lines[2]}" = "# (from function \`teardown' in test file $FIXTURE_ROOT/failing_teardown.bats, line 2)" ]
|
[ "${lines[2]}" = "# (from function \`teardown' in test file $FIXTURE_ROOT/failing_teardown.bats, line 2)" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "failing test with teardown failure should result in test failure" {
|
@test "failing test with teardown failure" {
|
||||||
PASS=0 run bats "$FIXTURE_ROOT/failing_teardown.bats"
|
PASS=0 run bats "$FIXTURE_ROOT/failing_teardown.bats"
|
||||||
[ $status -eq 1 ]
|
[ $status -eq 1 ]
|
||||||
[ "${lines[1]}" = "not ok 1 truth" ]
|
[ "${lines[1]}" = "not ok 1 truth" ]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user