11 lines
233 B
Common Lisp
11 lines
233 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage lizfcm/tests
|
|
(:use :cl
|
|
:fiveam)
|
|
(:export :run!
|
|
:lizfcm-test-suite))
|
|
(in-package :lizfcm/tests)
|
|
|
|
(def-suite lizfcm-test-suite
|
|
:description "The ultimate parent test suite")
|