mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
- 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
13 lines
214 B
Common Lisp
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))
|