Sha256: 38dd923bf482003dce4547a99317a0a53c4a0f56a35946fed63931e80ec3d307
Contents?: true
Size: 818 Bytes
Versions: 27
Compression:
Stored size: 818 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require 'spec_helper' describe Mongoid::Errors::AmbiguousRelationship do describe "#message" do let(:error) do described_class.new(Person, Drug, :person, [ :drugs, :evil_drugs ]) end it "contains the problem in the message" do expect(error.message).to include( "Ambiguous associations :drugs, :evil_drugs defined on Person." ) end it "contains the summary in the message" do expect(error.message).to include( "When Mongoid attempts to set an inverse document of an association in memory" ) end it "contains the resolution in the message" do expect(error.message).to include( "On the :person association on Drug you must add an :inverse_of option" ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems