diff options
| author | Andrei <andreisva2023@gmail.com> | 2026-02-13 20:57:05 -0800 |
|---|---|---|
| committer | Andrei <andreisva2023@gmail.com> | 2026-02-13 20:57:05 -0800 |
| commit | 0fa9f69a97b9f695936b907424e4c3d1af6f7452 (patch) | |
| tree | 9a471d3ab005105e8bfcff73184f6beef5dbfa1c /tests/main.lisp | |
Initial Commit
Diffstat (limited to 'tests/main.lisp')
| -rw-r--r-- | tests/main.lisp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/main.lisp b/tests/main.lisp new file mode 100644 index 0000000..84d23a9 --- /dev/null +++ b/tests/main.lisp @@ -0,0 +1,10 @@ +(defpackage matrix-bot/tests/main + (:use :cl + :matrix-bot + :rove)) +(in-package :matrix-bot/tests/main) + +;; NOTE: To run this test file, execute `(asdf:test-system :matrix-bot)' in your Lisp. +(deftest test-target-1 + (testing "should (= 1 1) to be true" + (ok (= 1 1)))) |
