Sha256: 22ef59b98229c2455e11719b6be51460074d95d84080e8e11e1a004d0ef14490
Contents?: true
Size: 783 Bytes
Versions: 27
Compression:
Stored size: 783 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 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 & 2 rubygems