aoc-cl/tests/2024/main.lisp

18 lines
253 B
Common Lisp
Raw Normal View History

2024-12-01 12:04:03 +01:00
(defpackage :aoc/2024/tests
(:use :cl :aoc/tests :parachute)
(:export
#:suite-2024))
(in-package :aoc/2024/tests)
(define-test suite-2024
:parent 'aoc-suite)
2024-12-19 13:08:17 +01:00
(define-test test-day08
:parent 'suite-2024
(aoc/2024/08/tests:run-tests))