17 lines
253 B
Common Lisp
17 lines
253 B
Common Lisp
(defpackage :aoc/2024/tests
|
|
(:use :cl :aoc/tests :parachute)
|
|
(:export
|
|
#:suite-2024))
|
|
|
|
(in-package :aoc/2024/tests)
|
|
|
|
(define-test suite-2024
|
|
:parent 'aoc-suite)
|
|
|
|
|
|
(define-test test-day08
|
|
:parent 'suite-2024
|
|
(aoc/2024/08/tests:run-tests))
|
|
|
|
|
|
|