mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
14 lines
282 B
Bash
Executable File
14 lines
282 B
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
@test "x-localip prints version" {
|
|
run bash local/bin/x-localip --version
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" == "x-localip version"* ]]
|
|
}
|
|
|
|
@test "x-localip help" {
|
|
run bash local/bin/x-localip --help
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" == "Usage:"* ]]
|
|
}
|