Sha256: 34fc80e267ff54285691dc6ff7893bc951a61f43b70ab43014bc0e817bd0ada9
Contents?: true
Size: 830 Bytes
Versions: 73
Compression:
Stored size: 830 Bytes
Contents
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) 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
73 entries across 68 versions & 6 rubygems