This commit is contained in:
Akira Tempaku 2024-01-30 00:48:47 +09:00
commit 72ef5ae639
12 changed files with 174 additions and 0 deletions

10
tests/example.lisp Normal file
View file

@ -0,0 +1,10 @@
(defpackage #:hp-tests/example
(:use #:cl
#:fiveam))
(in-package #:hp-tests/example)
(def-suite example-test)
(in-suite example-test)
(test adder-test
(is (= (+ 1 1) 2)))