Sha256: 70b6c398ec292dbcba8ed04f003f4c370933c06cfb6d8b58707e1a81751c81d4
Contents?: true
Size: 741 Bytes
Versions: 27
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::UnknownAttribute do describe "#message" do let(:error) do described_class.new(Person, :gender) end it "contains the problem in the message" do expect(error.message).to include( "Attempted to set a value for 'gender' which is not allowed on" ) end it "contains the summary in the message" do expect(error.message).to include( "Without including Mongoid::Attributes::Dynamic in your model" ) end it "contains the resolution in the message" do expect(error.message).to include( "You can include Mongoid::Attributes::Dynamic" ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems