Sha256: c3469f1f03552361e56c1b74a17b12f8e5c83ef2dd6b9140ea0faaa7ca648d5a
Contents?: true
Size: 698 Bytes
Versions: 73
Compression:
Stored size: 698 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::NoParent do describe "#message" do let(:error) do described_class.new(Address) end it "contains the problem in the message" do expect(error.message).to include( "Cannot persist embedded document Address without a parent document." ) end it "contains the summary in the message" do expect(error.message).to include( "If the document is embedded, in order to be persisted it must" ) end it "contains the resolution in the message" do expect(error.message).to include( "Ensure that you've set the parent relation if instantiating" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems