Sha256: f5d2bc1243a4b5710f846f2b8fd915c884adffa4eacfd65ee1213cd5e2fd7ab0

Contents?: true

Size: 758 Bytes

Versions: 21

Compression:

Stored size: 758 Bytes

Contents

# frozen_string_literal: true

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 documents."
      )
    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

21 entries across 21 versions & 1 rubygems

Version Path
mongoid-8.0.10 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.10 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.9 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.9 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.8 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.7 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.6 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.8 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.5 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.7 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.6 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.5 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.1.0 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-8.0.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb