spec/mongoid/errors/invalid_find_spec.rb in mongoid-3.1.7 vs spec/mongoid/errors/invalid_find_spec.rb in mongoid-4.0.0.alpha1
- old
+ new
@@ -7,22 +7,22 @@
let(:error) do
described_class.new
end
it "contains the problem in the message" do
- error.message.should include(
+ expect(error.message).to include(
"Calling Document.find with nil is invalid"
)
end
it "contains the summary in the message" do
- error.message.should include(
+ expect(error.message).to include(
"Document.find expects the parameters to be 1 or more ids"
)
end
it "contains the resolution in the message" do
- error.message.should include(
+ expect(error.message).to include(
"Most likely this is caused by passing parameters directly"
)
end
end
end