Sha256: 8c151e00928d33c1035bf1e2e45d93eb45db0eb35d18ff08718deac068a315de
Contents?: true
Size: 734 Bytes
Versions: 73
Compression:
Stored size: 734 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::ScopeOverwrite do describe "#message" do let(:error) do described_class.new("Person", "scope") end it "contains the problem in the message" do expect(error.message).to include( "Cannot create scope :scope, because of existing method Person.scope." ) end it "contains the summary in the message" do expect(error.message).to include( "When defining a scope that conflicts with a method that already exists" ) end it "contains the resolution in the message" do expect(error.message).to include( "Change the name of the scope so it does not conflict with the already" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems