This commit is contained in:
Adam Mohammed
2023-04-08 20:41:50 -04:00
commit 00d2b69b46
6 changed files with 211 additions and 0 deletions

21
k8splayground.asd Normal file
View File

@@ -0,0 +1,21 @@
(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)))