Sha256: 5685570aaac489672fc0db257a29a1d87dd1c31fd909be2a6bb97d9b83421c6d
Contents?: true
Size: 732 Bytes
Versions: 29
Compression:
Stored size: 732 Bytes
Contents
# frozen_string_literal: true 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 association if instantiating" ) end end end
Version data entries
29 entries across 29 versions & 1 rubygems