diff options
author | Colin Okay <okay@toyful.space> | 2022-02-02 14:08:23 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-02-02 14:08:23 -0600 |
commit | 595f7ae79c74129a28eba5fa68feb33875eb3323 (patch) | |
tree | b86c4b4555c6e596c989231bf7f481eea3eefcba /tests |
initial commit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.lisp | 11 |
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)))) |