summaryrefslogtreecommitdiffstats
path: root/test/03.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'test/03.lisp')
-rw-r--r--test/03.lisp8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/03.lisp b/test/03.lisp
index 52ea534..000ece8 100644
--- a/test/03.lisp
+++ b/test/03.lisp
@@ -1,8 +1,6 @@
-(ql:quickload "clunit")
-
(use-package :clunit)
-(defsuite 03/aoc ())
+(defsuite 03/aoc (aoc))
(defvar 03/default-input nil)
@@ -29,11 +27,11 @@
(assert-equalp 230 result)))
(deftest 03/test-a (03/aoc)
- (let ((result (03/part-a (03/parse-input "../inputs/03.txt"))))
+ (let ((result (03/part-a (03/parse-input "inputs/03.txt"))))
(assert-equalp 3912944 result)))
(deftest 03/test-b (03/aoc)
- (let ((result (03/part-b (03/parse-input "../inputs/03.txt"))))
+ (let ((result (03/part-b (03/parse-input "inputs/03.txt"))))
(assert-equalp 4996233 result)))
(defun 03/run-tests () (run-suite '03/aoc))