setup-lisp/t/core.lisp
2021-02-02 23:57:14 +03:00

16 lines
312 B
Common Lisp

(defpackage #:cl-info-test/core
(:use #:cl
#:cl-info/core
#:rove
#:hamcrest/rove))
(in-package cl-info-test/core)
(defun foo (a b)
(list a b 3))
(deftest test-some-staff
(testing "Replace this test with real staff."
(assert-that (foo 1 2)
(contains 1 2))))