Sha256: 747637c447fd77f0caddcce96cdc1d0a937018e06e9d2b2138a62c23f882568e
Contents?: true
Size: 713 Bytes
Versions: 3
Compression:
Stored size: 713 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 error.message.should include( "Accepting nested attributes for favorites is limited to 5 records." ) end it "contains the summary in the message" do error.message.should include( "More documents were sent to be processed than the allowed limit." ) end it "contains the resolution in the message" do error.message.should include( "The limit is set as an option to the macro, for example:" ) end end end
Version data entries
3 entries across 3 versions & 1 rubygems