Sha256: e303fb7e314720460ef81f6d693305c9ebd396450230181b314df589abcc2fcb
Contents?: true
Size: 876 Bytes
Versions: 21
Compression:
Stored size: 876 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe Mongoid::Errors::InvalidField do describe "#message" do module MyModule def crazy_method; self; end end before do Object.send(:include, MyModule) end let(:error) do described_class.new(Person, :crazy_method, :crazy_method) end it "contains the problem in the message" do expect(error.message).to include( "Defining a field named 'crazy_method' is not allowed." ) end it "contains the summary in the message" do expect(error.message).to include( "Defining this field would override the method 'crazy_method'" ) end it "contains the resolution in the message" do expect(error.message).to include( "Use Mongoid.destructive_fields to see what names are not allowed" ) end end end
Version data entries
21 entries across 21 versions & 1 rubygems