spec/grape/exceptions/missing_option_spec.rb in grape-0.7.0 vs spec/grape/exceptions/missing_option_spec.rb in grape-0.8.0
- old
+ new
@@ -6,10 +6,10 @@
let(:error) do
described_class.new(:path)
end
it "contains the problem in the message" do
- error.message.should include(
+ expect(error.message).to include(
"You must specify :path options."
)
end
end