Fix test suite configuration

This commit is contained in:
HiPhish 2022-09-25 19:28:15 +02:00
parent a678b04a81
commit ecc0d234d4
4 changed files with 5 additions and 4 deletions

View file

@ -55,4 +55,5 @@
:components ((:module "test"
:components ((:module "hssg"
:components ((:file "package")
(:file "main")))))))
(:file "main")
(:file "template")))))))

View file

@ -7,5 +7,5 @@
:description "The root suite of all tests.")
(def-suite hssg
:description ""
:description "Parent suite of tests for the HSSG core"
:in hssg/test:all-tests)

View file

@ -2,4 +2,3 @@
(:documentation "Main test package")
(:use #:cl #:fiveam)
(:export test-all all-tests))

View file

@ -1,7 +1,8 @@
(in-package #:hssg/test)
(def-suite hssg/template
:description "Tests for the HTML template engine")
:description "Tests for the HTML template engine"
:in hssg)
(in-suite hssg/template)