Sha256: 0bba813bf31a2730690e1db5533bf6b31befe855e252c692eb3620784c642267
Contents?: true
Size: 727 Bytes
Versions: 27
Compression:
Stored size: 727 Bytes
Contents
# frozen_string_literal: true 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
27 entries across 27 versions & 1 rubygems