summaryrefslogtreecommitdiff
path: root/test/problem-7.bats
diff options
context:
space:
mode:
Diffstat (limited to 'test/problem-7.bats')
-rw-r--r--test/problem-7.bats27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/problem-7.bats b/test/problem-7.bats
deleted file mode 100644
index 4cab203..0000000
--- a/test/problem-7.bats
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env bats
-
-load test_helper
-
-#@test "invoke with a host on the network" {
- #run problem-7.sh localhost
-
- #assert_success "localhost is on the network"
-#}
-
-@test "invoke with a host not on the network" {
- run problem-7.sh unknown
-
- assert_success "unknown is NOT on the network"
-}
-
-@test "invoke without a hostname argument" {
- run problem-7.sh
-
- assert_failure "error: a hostname is required"
-}
-
-#@test "invoke with multiple hostnames" {
- #run problem-7.sh localhost invalid
-
- #assert_success $'localhost is on the network\ninvalid is NOT on the network'
-#}