aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-03 13:51:39 -0600
committerColin Okay <okay@toyful.space>2022-02-03 13:51:39 -0600
commit15c796b78a6d766a269fa3b17656d99cb7dcd8c8 (patch)
treebfd3d80f7bea10e6ed464142faa464f405a4ca26 /tests
initial commit
Diffstat (limited to 'tests')
-rw-r--r--tests/main.lisp11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/main.lisp b/tests/main.lisp
new file mode 100644
index 0000000..640374e
--- /dev/null
+++ b/tests/main.lisp
@@ -0,0 +1,11 @@
+(defpackage oneliners.cli/tests/main
+ (:use :cl
+ :oneliners.cli
+ :rove))
+(in-package :oneliners.cli/tests/main)
+
+;; NOTE: To run this test file, execute `(asdf:test-system :oneliners.cli)' in your Lisp.
+
+(deftest test-target-1
+ (testing "should (= 1 1) to be true"
+ (ok (= 1 1))))