mirror of
https://github.com/octoleo/hosts.git
synced 2025-04-05 06:51:51 +00:00
Add help tests to version.bats.
This commit is contained in:
parent
abfd442c3d
commit
4265bfe1f9
@ -23,3 +23,18 @@ load test_helper
|
|||||||
printf "'%s'" "$output"
|
printf "'%s'" "$output"
|
||||||
echo "$output" | grep -q '\d\+\.\d\+\.\d\+'
|
echo "$output" | grep -q '\d\+\.\d\+\.\d\+'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# help ########################################################################
|
||||||
|
|
||||||
|
@test "\`help version\` exits with status 0." {
|
||||||
|
run "$_HOSTS" help version
|
||||||
|
[[ $status -eq 0 ]]
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "\`help version\` prints help information." {
|
||||||
|
run "$_HOSTS" help version
|
||||||
|
printf "\$status: %s\n" "$status"
|
||||||
|
printf "\$output: '%s'\n" "$output"
|
||||||
|
[[ "${lines[0]}" == "Usage:" ]]
|
||||||
|
[[ "${lines[1]}" == " hosts ( version | --version )" ]]
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user