summaryrefslogtreecommitdiff
path: root/t/main.lisp
blob: 11646b304e735bef5e69eb06a35740c32aa1fe7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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))))