setup-lisp/t/core.lisp

17 lines
312 B
Common Lisp
Raw Normal View History

2018-01-27 22:08:45 +00:00
(defpackage #:cl-info-test/core
(:use #:cl
#:cl-info/core
#:rove
#:hamcrest/rove))
(in-package cl-info-test/core)
2021-02-02 20:57:14 +00:00
(defun foo (a b)
(list a b 3))
2018-01-27 22:08:45 +00:00
(deftest test-some-staff
2021-02-02 20:57:14 +00:00
(testing "Replace this test with real staff."
(assert-that (foo 1 2)
(contains 1 2))))