features/configuration/fake_ar_attributes.feature in bogus-0.1.4 vs features/configuration/fake_ar_attributes.feature in bogus-0.1.5
- old
+ new
@@ -46,8 +46,8 @@
require_relative 'blog_post'
post = fake(:blog_post, name: "the name")
stub(post).tags { "foo, bar" }
- post.name.should == "the name"
- post.tags.should == "foo, bar"
+ expect(post.name).to eq("the name")
+ expect(post.tags).to eq("foo, bar")
"""