mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-21 20:35:10 +00:00
Test argument with no match in remove.bats.
This commit is contained in:
parent
eb57a685c4
commit
f8564cfb2f
@ -28,6 +28,34 @@ load test_helper
|
||||
[[ "${lines[1]}" == " hosts remove ( <ip> | <hostname> | <search string> ) [--force]" ]]
|
||||
}
|
||||
|
||||
# `hosts remove <invalid> --force` ############################################
|
||||
|
||||
@test "\`remove <invalid> --force\` exits with status 1." {
|
||||
{
|
||||
run "$_HOSTS" add 0.0.0.0 example.com
|
||||
run "$_HOSTS" add 0.0.0.0 example.net
|
||||
run "$_HOSTS" add 127.0.0.2 example.com
|
||||
}
|
||||
|
||||
run "$_HOSTS" remove 127.0.0.3 --force
|
||||
printf "\$status: %s\n" "$status"
|
||||
printf "\$output: '%s'\n" "$output"
|
||||
[[ $status -eq 1 ]]
|
||||
}
|
||||
|
||||
@test "\`remove <invalid> --force\` prints error message." {
|
||||
{
|
||||
run "$_HOSTS" add 0.0.0.0 example.com
|
||||
run "$_HOSTS" add 0.0.0.0 example.net
|
||||
run "$_HOSTS" add 127.0.0.2 example.com
|
||||
}
|
||||
|
||||
run "$_HOSTS" remove 127.0.0.3 --force
|
||||
printf "\$status: %s\n" "$status"
|
||||
printf "\$output: '%s'\n" "$output"
|
||||
[[ $output == "No matching records found." ]]
|
||||
}
|
||||
|
||||
# `hosts remove <ip> --force` #################################################
|
||||
|
||||
@test "\`remove <ip> --force\` exits with status 0." {
|
||||
|
Loading…
Reference in New Issue
Block a user