1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-11-17 11:42:33 +01:00
bats/test/fixtures/setup.bats
2011-12-28 20:46:24 -06:00

18 lines
164 B
Bash

TMP="$BATS_TEST_DIRNAME/../tmp"
setup() {
echo "$BATS_TEST_NAME" >> "$TMP/setup.log"
}
@test "one" {
true
}
@test "two" {
true
}
@test "three" {
true
}