diff --git a/hssg.asd b/hssg.asd index 7ebb43b..3abcd71 100644 --- a/hssg.asd +++ b/hssg.asd @@ -55,4 +55,5 @@ :components ((:module "test" :components ((:module "hssg" :components ((:file "package") - (:file "main"))))))) + (:file "main") + (:file "template"))))))) diff --git a/test/hssg/main.lisp b/test/hssg/main.lisp index 3ae1781..d4e5403 100644 --- a/test/hssg/main.lisp +++ b/test/hssg/main.lisp @@ -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) diff --git a/test/hssg/package.lisp b/test/hssg/package.lisp index e675d20..52f5f9f 100644 --- a/test/hssg/package.lisp +++ b/test/hssg/package.lisp @@ -2,4 +2,3 @@ (:documentation "Main test package") (:use #:cl #:fiveam) (:export test-all all-tests)) - diff --git a/test/hssg/template.lisp b/test/hssg/template.lisp index d910ba4..61830bd 100644 --- a/test/hssg/template.lisp +++ b/test/hssg/template.lisp @@ -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)