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

Version Path
mongoid-7.3.5 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.3.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.1.11 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.6 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.3.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.3.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.5 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.1.10 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.1.9 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.4 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.3.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.3.0 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.3 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.1.8 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.2 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.1 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.1.7 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.2.0 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb
mongoid-7.1.6 spec/mongoid/errors/too_many_nested_attribute_records_spec.rb