aboutsummaryrefslogtreecommitdiffstats
path: root/sandbox/t/t0000-basic.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/t/t0000-basic.sh')
-rwxr-xr-xsandbox/t/t0000-basic.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/sandbox/t/t0000-basic.sh b/sandbox/t/t0000-basic.sh
new file mode 100755
index 0000000..2fd0b3d
--- /dev/null
+++ b/sandbox/t/t0000-basic.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+# t0000-basic:
+# Test the very basic functionality of poe/sandbox.
+
+. ./test-utils.sh
+
+################################################################
+# Test framework
+test_expect_success 'abc' '
+ echo 123
+'
+test_expect_success 'abcd' '
+ $SANDBOX
+'
+
+test_done