Merge pull request #41 from danilat/master

Little changes to support rspec 3 version
This commit is contained in:
Emily Bache 2016-08-04 08:02:38 +02:00 committed by GitHub
commit cbb9ae16c4
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