20 lines
388 B
Common Lisp
20 lines
388 B
Common Lisp
(defpackage :aoc/2024/06/tests
|
|
(:use :cl :aoc :aoc/tests :aoc/2024/tests :parachute :aoc/2024/06))
|
|
|
|
(in-package :aoc/2024/06/tests)
|
|
|
|
(define-test suite-2024-06
|
|
;:parent suite-2024
|
|
)
|
|
|
|
|
|
|
|
(define-test+run test-part1
|
|
:parent suite-2024-06
|
|
(true (equalp "41" (part1 sample-data))))
|
|
|
|
(define-test+run test-part2
|
|
:parent suite-2024-06
|
|
(true (equalp "6" (part2 sample-data))))
|
|
|
|
|