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