15 lines
317 B
Common Lisp
15 lines
317 B
Common Lisp
(defpackage aoc/tests
|
|
(:use :cl :aoc :parachute)
|
|
(:export
|
|
#:aoc-suite))
|
|
|
|
(in-package :aoc/tests)
|
|
|
|
;; NOTE: To run this test file, execute `(asdf:test-system :aoc)' in your Lisp.
|
|
|
|
;; top of test suite tree
|
|
(define-test aoc-suite)
|
|
|
|
(define-test "should (= 1 1) to be true"
|
|
:parent aoc-suite
|
|
(true (= 1 1)))
|