aboutsummaryrefslogtreecommitdiff
path: root/tests/main.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.lisp')
-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..41e6def
--- /dev/null
+++ b/tests/main.lisp
@@ -0,0 +1,11 @@
+(defpackage oneliners.api/tests/main
+ (:use :cl
+ :oneliners.api
+ :rove))
+(in-package :oneliners.api/tests/main)
+
+;; NOTE: To run this test file, execute `(asdf:test-system :oneliners.api)' in your Lisp.
+
+(deftest test-target-1
+ (testing "should (= 1 1) to be true"
+ (ok (= 1 1))))