mirror of
https://github.com/sstephenson/bats.git
synced 2026-02-25 09:18:10 +01:00
Suite support for aggregating multiple tests under a single run
This commit is contained in:
3
test/fixtures/suite/multiple/a.bats
vendored
Normal file
3
test/fixtures/suite/multiple/a.bats
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
@test "truth" {
|
||||
true
|
||||
}
|
||||
7
test/fixtures/suite/multiple/b.bats
vendored
Normal file
7
test/fixtures/suite/multiple/b.bats
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
@test "more truth" {
|
||||
true
|
||||
}
|
||||
|
||||
@test "quasi-truth" {
|
||||
[ -z "$FLUNK" ]
|
||||
}
|
||||
3
test/fixtures/suite/single/test.bats
vendored
Normal file
3
test/fixtures/suite/single/test.bats
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
@test "a passing test" {
|
||||
true
|
||||
}
|
||||
Reference in New Issue
Block a user