mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
10 lines
255 B
Erlang
10 lines
255 B
Erlang
-module(gilded_rose_test).
|
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
-include("gilded_rose.hrl").
|
|
|
|
update_quality_test_() -> [
|
|
{"foo", ?_assertMatch([#item{name= "Foo"}], gilded_rose:update_quality([#item{name = "Foo", sell_in = 0, quality = 0}]))}
|
|
].
|