mirror of
https://github.com/sstephenson/bats.git
synced 2024-11-17 19:52:37 +01:00
18 lines
164 B
Plaintext
18 lines
164 B
Plaintext
|
TMP="$BATS_TEST_DIRNAME/../tmp"
|
||
|
|
||
|
setup() {
|
||
|
echo "$BATS_TEST_NAME" >> "$TMP/setup.log"
|
||
|
}
|
||
|
|
||
|
@test "one" {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
@test "two" {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
@test "three" {
|
||
|
true
|
||
|
}
|