Sha256: 6ab4144864ca5498de6be785008583ee1f5001948d910f4b7af1d27d620f9e24
Contents?: true
Size: 749 Bytes
Versions: 27
Compression:
Stored size: 749 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 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
27 entries across 27 versions & 2 rubygems