This commit is contained in:
Vibhor Mahajan 2015-12-28 11:30:03 +00:00
commit 9d6d8a8133
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
--colour
--format nested
--format documentation

View File

@ -6,7 +6,7 @@ describe GildedRose do
it "does not change the name" do
items = [Item.new("foo", 0, 0)]
GildedRose.new(items).update_quality()
items[0].name.should == "fixme"
expect(items[0].name).to eq("fixme")
end
end