Sha256: a80fab5122da4fd8179892c23748f4c2754cdc50a8e9ade62e658c1b6c16d1aa

Contents?: true

Size: 756 Bytes

Versions: 8

Compression:

Stored size: 756 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 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

8 entries across 8 versions & 1 rubygems

Version Path
mongoid-7.5.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.5.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.5.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.5.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.4.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.5.0 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.4.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.4.0 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb