22 lines
607 B
Common Lisp
22 lines
607 B
Common Lisp
(defsystem "k8splayground"
|
|
:version "0.1.0"
|
|
:author "Adam Mohammed"
|
|
:license ""
|
|
:depends-on ("yason")
|
|
:components ((:module "src"
|
|
:components
|
|
((:file "main"))))
|
|
:description ""
|
|
:in-order-to ((test-op (test-op "k8splayground/tests"))))
|
|
|
|
(defsystem "k8splayground/tests"
|
|
:author "Adam Mohammed"
|
|
:license ""
|
|
:depends-on ("k8splayground"
|
|
"rove")
|
|
:components ((:module "tests"
|
|
:components
|
|
((:file "main"))))
|
|
:description "Test system for k8splayground"
|
|
:perform (test-op (op c) (symbol-call :rove :run c)))
|