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/stdlib/bats/tests/testfile/test.bats
Sam Alba 18c04dcc31 test: added bats dependencies files
Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
2021-12-14 09:12:18 -08:00

13 lines
201 B
Bash

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
}