Sha256: 83d6296497f9ef9e9ca258a3e0e7842883cd376185fbb47b4275bcfb4927abc3
Contents?: true
Size: 725 Bytes
Versions: 73
Compression:
Stored size: 725 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::TooManyNestedAttributeRecords do describe "#message" do let(:error) do described_class.new("favorites", 5) end it "contains the problem in the message" do expect(error.message).to include( "Accepting nested attributes for favorites is limited to 5 records." ) end it "contains the summary in the message" do expect(error.message).to include( "More documents were sent to be processed than the allowed limit." ) end it "contains the resolution in the message" do expect(error.message).to include( "The limit is set as an option to the macro, for example:" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems