Sha256: b20a6b48eb6de4d1c06cfd62cdc020c358fe95a9c68263114a762828e0f8a39b
Contents?: true
Size: 765 Bytes
Versions: 27
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true 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
27 entries across 27 versions & 1 rubygems