hosts/test/version.bats

41 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2016-01-26 03:27:49 +00:00
#!/usr/bin/env bats
load test_helper
@test "\`hosts version\` returns with 0 status." {
run "${_HOSTS}" version
[[ "${status}" -eq 0 ]]
2016-01-26 03:27:49 +00:00
}
@test "\`hosts version\` prints a version number." {
run "${_HOSTS}" version
printf "'%s'" "${output}"
echo "${output}" | grep -q '[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+'
2016-01-26 03:27:49 +00:00
}
@test "\`hosts --version\` returns with 0 status." {
run "${_HOSTS}" --version
[[ "${status}" -eq 0 ]]
2016-01-26 03:27:49 +00:00
}
@test "\`hosts --version\` prints a version number." {
run "${_HOSTS}" --version
printf "'%s'" "${output}"
echo "${output}" | grep -q '[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+'
2016-01-26 03:27:49 +00:00
}
2016-01-27 03:07:05 +00:00
# help ########################################################################
@test "\`help version\` exits with status 0." {
run "${_HOSTS}" help version
[[ ${status} -eq 0 ]]
2016-01-27 03:07:05 +00:00
}
@test "\`help version\` prints help information." {
run "${_HOSTS}" help version
printf "\${status}: %s\\n" "${status}"
printf "\${output}: '%s'\\n" "${output}"
2016-01-27 03:07:05 +00:00
[[ "${lines[0]}" == "Usage:" ]]
2016-01-27 04:25:16 +00:00
[[ "${lines[1]}" == " hosts (version | --version)" ]]
2016-01-27 03:07:05 +00:00
}