Sha256: 8ae71adc08964d490a8c1b72e7df60b9d52763d42525a6d9a10b22f1bb28080d
Contents?: true
Size: 696 Bytes
Versions: 73
Compression:
Stored size: 696 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::DeleteRestriction do describe "#message" do let(:error) do described_class.new(Person.new, :drugs) end it "contains the problem in the message" do expect(error.message).to include( "Cannot delete Person because of dependent 'drugs'." ) end it "contains the summary in the message" do expect(error.message).to include( "When defining 'drugs' with a :dependent => :restrict," ) end it "contains the resolution in the message" do expect(error.message).to include( "Don't attempt to delete the parent Person when it has children" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems