Sha256: afaafb0e3521fb9894a6cb71691f812eb699faecd1b39b45e9b35df5f7d84961
Contents?: true
Size: 774 Bytes
Versions: 27
Compression:
Stored size: 774 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 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
27 entries across 27 versions & 2 rubygems