mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
6 lines
155 B
Python
6 lines
155 B
Python
from gilded_rose import Item, update_quality
|
|
|
|
def test_foo():
|
|
items = [Item("foo", 0, 0)]
|
|
update_quality(items)
|
|
assert "fixme" == items[0].name |