Sha256: 7036c7e058fe1abec123d16e3831e606499928a2350891ec40feddce6e276701
Contents?: true
Size: 704 Bytes
Versions: 27
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 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 critera." ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems