summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-16 01:43:19 -0400
committerbd <bdunahu@operationnull.com>2025-03-16 01:43:19 -0400
commitc5a4fa662e17aa85d895cde4ae3869d8074312e2 (patch)
tree3337a945efa44b8829a3a073e6d85285d5ca8e5b /t
parentc999b377b2ddd7dc51d0ae7ab639ebb0cf70f051 (diff)
Added and configured fiveam test suite
Diffstat (limited to 't')
-rw-r--r--t/main.lisp14
-rw-r--r--t/package.lisp5
2 files changed, 19 insertions, 0 deletions
diff --git a/t/main.lisp b/t/main.lisp
new file mode 100644
index 0000000..11646b3
--- /dev/null
+++ b/t/main.lisp
@@ -0,0 +1,14 @@
+(in-package #:rva-tests)
+
+(def-suite all-tests
+ :description "The master suite of rva tests.")
+
+(in-suite all-tests)
+
+(defun test-rva ()
+ (run! 'all-tests))
+
+(test dummy-tests
+ "Just a placeholder."
+ (is (listp (list 1 2)))
+ (is (= 5 (+ 2 3))))
diff --git a/t/package.lisp b/t/package.lisp
new file mode 100644
index 0000000..3581978
--- /dev/null
+++ b/t/package.lisp
@@ -0,0 +1,5 @@
+(defpackage #:rva-tests
+ (:use #:cl #:fiveam)
+ (:export #:run!
+ #:test-rva
+ #:all-tests))