mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-07 18:52:19 +00:00
13 lines
801 B
Plaintext
13 lines
801 B
Plaintext
args: ('foo', -1) => 'foo, -1, -1'
|
|
args: ('foo', 0) => 'foo, -1, 0'
|
|
args: ('foo', 1) => 'foo, -1, 0'
|
|
args: ('Aged Brie', -1) => 'Aged Brie, -1, 1'
|
|
args: ('Aged Brie', 0) => 'Aged Brie, -1, 2'
|
|
args: ('Aged Brie', 1) => 'Aged Brie, -1, 3'
|
|
args: ('Backstage passes to a TAFKAL80ETC concert', -1) => 'Backstage passes to a TAFKAL80ETC concert, -1, 0'
|
|
args: ('Backstage passes to a TAFKAL80ETC concert', 0) => 'Backstage passes to a TAFKAL80ETC concert, -1, 0'
|
|
args: ('Backstage passes to a TAFKAL80ETC concert', 1) => 'Backstage passes to a TAFKAL80ETC concert, -1, 0'
|
|
args: ('Sulfuras, Hand of Ragnaros', -1) => 'Sulfuras, Hand of Ragnaros, 0, -1'
|
|
args: ('Sulfuras, Hand of Ragnaros', 0) => 'Sulfuras, Hand of Ragnaros, 0, 0'
|
|
args: ('Sulfuras, Hand of Ragnaros', 1) => 'Sulfuras, Hand of Ragnaros, 0, 1'
|