summaryrefslogtreecommitdiff
path: root/commands_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands_test.go')
-rw-r--r--commands_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/commands_test.go b/commands_test.go
new file mode 100644
index 0000000..1fe4d46
--- /dev/null
+++ b/commands_test.go
@@ -0,0 +1,9 @@
+package debos
+
+import (
+ "testing"
+)
+
+func TestBasicCommand(t *testing.T) {
+ Command{}.Run("out", "ls", "-l")
+}