spec/grape/exceptions/unknown_options_spec.rb in grape-0.7.0 vs spec/grape/exceptions/unknown_options_spec.rb in grape-0.8.0
- old
+ new
@@ -6,10 +6,10 @@
let(:error) do
described_class.new([:a, :b])
end
it "contains the problem in the message" do
- error.message.should include(
+ expect(error.message).to include(
"unknown options: "
)
end
end