Sha256: 7b9f1bc6711aa0faebbf1b6436b94f21fe8ad06acfa6261bf26644957c353f7c
Contents?: true
Size: 696 Bytes
Versions: 73
Compression:
Stored size: 696 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::MixedRelations do describe "#message" do let(:error) do described_class.new(Post, Address) end it "contains the problem in the message" do expect(error.message).to include( "Referencing a(n) Address document from the Post document" ) end it "contains the summary in the message" do expect(error.message).to include( "In order to properly access a(n) Address from Post the reference" ) end it "contains the resolution in the message" do expect(error.message).to include( "Consider not embedding Address, or do the key storage" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems