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

Version Path
mongoid-7.0.13 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.12 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-6.4.8 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.11 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.10 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-6.4.7 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-6.4.5 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.8 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.7 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.6 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-5.4.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.5 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-6.4.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-6.4.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.0.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-6.4.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-5.4.0 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb