Sha256: a51a559785070d14e79ded7b53f4c7c30a0c5110cc4cbb169f4e3d32c899227e
Contents?: true
Size: 659 Bytes
Versions: 73
Compression:
Stored size: 659 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::InvalidFind do describe "#message" do let(:error) do described_class.new end it "contains the problem in the message" do expect(error.message).to include( "Calling Document.find with nil is invalid" ) end it "contains the summary in the message" do 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 expect(error.message).to include( "Most likely this is caused by passing parameters directly" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems