From c5a4fa662e17aa85d895cde4ae3869d8074312e2 Mon Sep 17 00:00:00 2001 From: bd Date: Sun, 16 Mar 2025 01:43:19 -0400 Subject: Added and configured fiveam test suite --- t/main.lisp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 t/main.lisp (limited to 't/main.lisp') 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)))) -- cgit v1.2.3