mirror of
https://github.com/octoleo/hosts.git
synced 2024-10-31 18:52:31 +00:00
187222614a
Braces are only required in certain cases, but the cognitive overhead in keeping track of which cases require braces can be reduced by simply always using them. Example: `${NAME}` Retain more widely-used braces `$NAME` convention in documentation.
19 lines
486 B
Bash
19 lines
486 B
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helper
|
|
|
|
@test "\`hosts\` with no arguments exits with status 0." {
|
|
run "${_HOSTS}"
|
|
[ "${status}" -eq 0 ]
|
|
}
|
|
|
|
@test "\`hosts\` with no arguments prints enabled rules." {
|
|
run "${_HOSTS}"
|
|
[[ "${#lines[@]}" -eq 4 ]]
|
|
[[ "${lines[0]}" == "127.0.0.1 localhost" ]]
|
|
[[ "${lines[1]}" == "255.255.255.255 broadcasthost" ]]
|
|
[[ "${lines[2]}" == "::1 localhost" ]]
|
|
[[ "${lines[3]}" == "fe80::1%lo0 localhost" ]]
|
|
[[ "${lines[4]}" == "" ]]
|
|
}
|