Sha256: dd3a79cfe92f202a93b4fba941cbd025fdf709aa4d2cefe1d8b1f4f5c1a69581
Contents?: true
Size: 583 Bytes
Versions: 73
Compression:
Stored size: 583 Bytes
Contents
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
73 entries across 68 versions & 6 rubygems