summaryrefslogtreecommitdiff
path: root/test/problem-6.bats
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2019-09-07 13:37:58 -0600
committermo khan <mo@mokhan.ca>2019-09-07 13:37:58 -0600
commit091ef37ff36cfa0a67a6cf4e6356d362320a8c07 (patch)
tree5909591710be021e23c5fb1064e145f1d72172b3 /test/problem-6.bats
parent07454039c7ed4384a679325e9cd75c1faaceb43d (diff)
rename example spec
Diffstat (limited to 'test/problem-6.bats')
-rw-r--r--test/problem-6.bats20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/problem-6.bats b/test/problem-6.bats
deleted file mode 100644
index ff5ceb4..0000000
--- a/test/problem-6.bats
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bats
-
-load test_helper
-
-@test "testing" {
- result="$(echo 2+2 | bc)"
- [ "$result" -eq 4 ]
-}
-
-@test "invoke with a single integer" {
- run echo 'hello'
-
- assert_success $'hello'
-}
-
-@test "invoke with single non-numeric" {
- run rm blah
-
- assert_failure $'rm: blah: No such file or directory'
-}