Sha256: a16fc6a3ed0819a89d792358cbb3a5a08e55bab66876066d623125f8f58c9e63
Contents?: true
Size: 632 Bytes
Versions: 27
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require 'spec_helper' describe Mongoid::Errors::InvalidPath 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("Having a root path assigned for Address") end it "contains the summary in the message" do expect(error.message).to include("Mongoid has two different path objects") end it "contains the resolution in the message" do expect(error.message).to include("Most likely your embedded model, Address") end end end
Version data entries
27 entries across 27 versions & 2 rubygems