GildedRose-Refactoring-Kata/common-lisp-parachute/tests/package.lisp
NicoSimoski bf5b0d9cec
Added implementation in common lisp with unit-test
- added the existing implementation in common lisp with system-definition
- added a parachute-unit-test
- added a description for setup and running the unit-tests
- added a description for stubbing and mocking with cl-mock
2023-07-26 17:17:59 +02:00

13 lines
214 B
Common Lisp

;;;; package.lisp
(defpackage :gilded-rose-tests
(:use :cl :gilded-rose)
(:import-from :parachute
:define-test
:is)
(:import-from :cl-mock
:with-mocks
:answer
:call-previous
:invocations))