Responses for exercises in Exercism.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bats |
|
load bats-extra |
|
|
|
# local version: 1.1.0.0 |
|
|
|
@test "Say Hi!" { |
|
run bash hello_world.sh |
|
|
|
# the program's exit status should be success (0) |
|
assert_success |
|
|
|
# program's output should be the expected text |
|
assert_output "Hello, World!" |
|
}
|
|
|