stumpwm.stumpwm/stumpwm-tests.asd
sdilts 8c27468093 Use fiasco:all-tests to run tests instead of run-package-tests
This allows multiple test packages to be defined.
2021-01-26 21:56:14 -07:00

12 lines
337 B
Common Lisp

(defsystem "stumpwm-tests"
:name "StumpWM tests"
:serial t
:depends-on ("stumpwm"
"fiasco")
:pathname "tests/"
:components ((:file "package")
(:file "kmap")
(:file "pathnames"))
:perform (test-op (o c)
(uiop/package:symbol-call "FIASCO" "ALL-TESTS" 'stumpwm-tests)))