From ecc0d234d4f0998f171377b58e228b4972868a51 Mon Sep 17 00:00:00 2001 From: HiPhish Date: Sun, 25 Sep 2022 19:28:15 +0200 Subject: [PATCH] Fix test suite configuration --- hssg.asd | 3 ++- test/hssg/main.lisp | 2 +- test/hssg/package.lisp | 1 - test/hssg/template.lisp | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) 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)