This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/pkg/alpha.dagger.io/bats/tests/testfile/test.bats

13 lines
201 B
Plaintext
Raw Normal View History

setup() {
load 'mods/bats-support/load'
load 'mods/bats-assert/load'
}
@test "simple bats test" {
run echo "Hello world"
assert_success
run cat /do/not/exist
assert_failure
}