Custom tests runner.

This commit is contained in:
Alexander Artemenko 2021-02-02 23:57:14 +03:00
parent 02aac24c7f
commit 48784bff63
7 changed files with 114 additions and 41 deletions

View file

@ -6,7 +6,11 @@
(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))))
(testing "Replace this test with real staff."
(assert-that (foo 1 2)
(contains 1 2))))