12 lines
198 B
Common Lisp
12 lines
198 B
Common Lisp
![]() |
(in-package #:hssg/test)
|
||
|
|
||
|
(defun test-all ()
|
||
|
(run! 'all-tests))
|
||
|
|
||
|
(def-suite all-tests
|
||
|
:description "The root suite of all tests.")
|
||
|
|
||
|
(def-suite hssg
|
||
|
:description ""
|
||
|
:in hssg/test:all-tests)
|