Sha256: dd1a9a28053c7256d98bba581fa3d364f19c6a2489e53f5dd564073790c02475
Contents?: true
Size: 731 Bytes
Versions: 73
Compression:
Stored size: 731 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::NestedAttributesMetadataNotFound do describe "#message" do let(:error) do described_class.new(Person, :posts) end it "contains the problem in the message" do expect(error.message).to include( "Could not find metadata for relation 'posts' on model: Person." ) end it "contains the summary in the message" do expect(error.message).to include( "When defining nested attributes for a relation, Mongoid needs" ) end it "contains the resolution in the message" do expect(error.message).to include( "Make sure that there is a relation defined named 'posts' on Person" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems