Sha256: 7faf56c70f1cf84d15e169f0296cc01ddf0551f656c9ba7ee596617dbe6a8961
Contents?: true
Size: 731 Bytes
Versions: 24
Compression:
Stored size: 731 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe Mongoid::Errors::InvalidIndex do describe "#message" do let(:error) do described_class.new(Band, { name: 1 }, { invalid: true }) end it "contains the problem in the message" do expect(error.message).to include( "Invalid index specification on Band:" ) end it "contains the summary in the message" do expect(error.message).to include( "Indexes in Mongoid are defined as a hash of field name and direction" ) end it "contains the resolution in the message" do expect(error.message).to include( "Ensure that the index conforms to the correct syntax" ) end end end
Version data entries
24 entries across 24 versions & 1 rubygems