GildedRose-Refactoring-Kata/common-lisp-parachute/source/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

15 lines
205 B
Common Lisp

;;;; package.lisp
(defpackage :gilded-rose
(:use :cl)
(:export :run-gilded-rose
:gilded-rose
:update-quality
:items
:item
:name
:sell-in
:quality))