mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-13 08:46:28 +00:00
Add disabled.bats.
This commit is contained in:
parent
41a63ddf49
commit
2f0a45bb5a
35
test/disabled.bats
Normal file
35
test/disabled.bats
Normal file
@ -0,0 +1,35 @@
|
||||
#!/usr/bin/env bats
|
||||
|
||||
load test_helper
|
||||
|
||||
# `hosts disabled` #############################################################
|
||||
|
||||
@test "\`disabled\` with no arguments exits with status 0." {
|
||||
{
|
||||
run "$_HOSTS" add 0.0.0.0 example.com
|
||||
run "$_HOSTS" add 0.0.0.0 example.net
|
||||
run "$_HOSTS" add 127.0.0.1 example.com
|
||||
run "$_HOSTS" disable example.com
|
||||
}
|
||||
|
||||
run "$_HOSTS" disabled
|
||||
printf "\$status: %s\n" "$status"
|
||||
printf "\$output: '%s'\n" "$output"
|
||||
[[ $status -eq 0 ]]
|
||||
}
|
||||
|
||||
@test "\`disabled\` with no arguments prints list of disabled records." {
|
||||
{
|
||||
run "$_HOSTS" add 0.0.0.0 example.com
|
||||
run "$_HOSTS" add 0.0.0.0 example.net
|
||||
run "$_HOSTS" add 127.0.0.1 example.com
|
||||
run "$_HOSTS" disable example.com
|
||||
}
|
||||
|
||||
run "$_HOSTS" disabled
|
||||
printf "\$status: %s\n" "$status"
|
||||
printf "\$output: '%s'\n" "$output"
|
||||
[[ "${lines[0]}" == "0.0.0.0 example.com" ]]
|
||||
[[ "${lines[1]}" == "127.0.0.1 example.com" ]]
|
||||
[[ "${lines[2]}" == "" ]]
|
||||
}
|
Loading…
Reference in New Issue
Block a user