10 lines
169 B
Common Lisp
10 lines
169 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)
|