18 lines
335 B
Common Lisp
18 lines
335 B
Common Lisp
(defpackage :aoc/2024/13/tests
|
|
(:use :cl :aoc :aoc/tests :aoc/2024/tests :parachute :aoc/2024/13))
|
|
|
|
(in-package :aoc/2024/13/tests)
|
|
|
|
(define-test suite-2024-13
|
|
;:parent suite-2024
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
(define-test+run test-part1
|
|
:parent suite-2024-13
|
|
(is equal "480" (part1 sample-data)))
|
|
|
|
|