Sha256: b9a12d706f896e4bd7c5316fbda3f4c415df2b122af35f70febb0ac9999fb07b
Contents?: true
Size: 655 Bytes
Versions: 68
Compression:
Stored size: 655 Bytes
Contents
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
68 entries across 63 versions & 3 rubygems