Sha256: f238208d566cf4c2c380d22af7c0c174e3de1f8c25ff7f7263651bc4557edadb
Contents?: true
Size: 687 Bytes
Versions: 29
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe Mongoid::Errors::InvalidScope do describe "#message" do let(:error) do described_class.new(Band, {}) end it "contains the problem in the message" do expect(error.message).to include( "Defining a scope of value {} on Band is not allowed." ) end it "contains the summary in the message" do expect(error.message).to include( "Scopes in Mongoid must be procs that wrap" ) end it "contains the resolution in the message" do expect(error.message).to include( "Change the scope to be a proc wrapped criteria." ) end end end
Version data entries
29 entries across 29 versions & 1 rubygems