mirror of
https://github.com/sstephenson/bats.git
synced 2024-11-17 11:42:33 +01:00
18 lines
150 B
Bash
18 lines
150 B
Bash
LOG="$TMP/teardown.log"
|
|
|
|
teardown() {
|
|
echo "$BATS_TEST_NAME" >> "$LOG"
|
|
}
|
|
|
|
@test "one" {
|
|
true
|
|
}
|
|
|
|
@test "two" {
|
|
false
|
|
}
|
|
|
|
@test "three" {
|
|
true
|
|
}
|