Sha256: f9d42a1952b762d001de2aef79570a8c0ed758e8c09ba4f1c1b0ac0424483e96
Contents?: true
Size: 1.03 KB
Versions: 27
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::InvalidRelation 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 an association named 'crazy_method' is not allowed." ) end it "contains the summary in the message" do expect(error.message).to include( "Defining this association 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
27 entries across 27 versions & 2 rubygems