aoc-cl/tests/main.lisp

16 lines
317 B
Common Lisp
Raw Normal View History

2024-11-26 00:41:13 +01:00
(defpackage aoc/tests
2024-12-01 11:57:25 +01:00
(:use :cl :aoc :parachute)
(:export
#:aoc-suite))
2024-11-26 00:41:13 +01:00
(in-package :aoc/tests)
2024-11-17 22:32:08 +01:00
;; NOTE: To run this test file, execute `(asdf:test-system :aoc)' in your Lisp.
2024-11-26 00:41:13 +01:00
;; top of test suite tree
(define-test aoc-suite)
(define-test "should (= 1 1) to be true"
:parent aoc-suite
(true (= 1 1)))