From 8e267fafd7818d3e914bcc5e09167e0180571975 Mon Sep 17 00:00:00 2001 From: William Melody Date: Sun, 24 Jan 2016 22:57:56 -0800 Subject: [PATCH] Edit hosts.bats test names to conform to project conventions. --- test/hosts.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/hosts.bats b/test/hosts.bats index 8dc89e1..0fec4f8 100644 --- a/test/hosts.bats +++ b/test/hosts.bats @@ -2,12 +2,12 @@ load test_helper -@test "when passed no arguments exit with status 0" { +@test "\`hosts\` with no arguments exits with status 0." { run "$_HOSTS" [ "$status" -eq 0 ] } -@test "when passed no arguments print enabled rules." { +@test "\`hosts\` with no arguments prints enabled rules." { run "$_HOSTS" [[ "${lines[0]}" == "127.0.0.1 localhost" ]] [[ "${lines[1]}" == "255.255.255.255 broadcasthost" ]]