summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2019-05-25 18:10:54 -0600
committermo <mo.khan@gmail.com>2019-05-25 18:10:54 -0600
commit1ce4711b658015a76f04418426abeefd5c9ad44c (patch)
tree2ab2c096565beedd6ff4043c3b151bbb5771a44c
parent49a8aceaa59d1455f9615c4aa4b385dcc0b94f84 (diff)
add first test
-rw-r--r--test/problem-6.bats6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/problem-6.bats b/test/problem-6.bats
new file mode 100644
index 0000000..77d64f5
--- /dev/null
+++ b/test/problem-6.bats
@@ -0,0 +1,6 @@
+#!/usr/bin/env bats
+
+@test "testing" {
+ result="$(echo 2+2 | bc)"
+ [ "$result" -eq 4 ]
+}