Parallel Letter Frequency
This commit is contained in:
parent
3ca9867a11
commit
af89290bbc
45 changed files with 2862 additions and 0 deletions
14
bash/hello-world/hello_world.bats
Normal file
14
bash/hello-world/hello_world.bats
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/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!"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue