mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
8 lines
153 B
Bash
8 lines
153 B
Bash
bats_load_library 'bats-support'
|
|
bats_load_library 'bats-assert'
|
|
|
|
@test 'assert_output() check for existence' {
|
|
run echo 'have'
|
|
assert_output 'have'
|
|
}
|