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

12
tests/main.lisp Normal file
View File

@@ -0,0 +1,12 @@
(defpackage k8splayground/tests/main
(:use :cl
:k8splayground
:rove))
(in-package :k8splayground/tests/main)
;; NOTE: To run this test file, execute `(asdf:test-system :k8splayground)' in your Lisp.
(deftest make-k8s-cluster
(testing "should create a k8s-cluster"
(let ((cluster (k8smake-k8s-cluster)))
(ok (= "test" (k8splayground:cluster-name cluster))))))