Sha256: cb3b305950580ae4524e1d7b4196aed1f0d41dd7bd631dc00626ca871bb5f905
Contents?: true
Size: 708 Bytes
Versions: 27
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::InvalidFind do describe "#message" do let(:error) do described_class.new end it "contains the problem in the message" do expect(error.message).to include( "Calling Document.find with nil is invalid" ) end it "contains the summary in the message" do expect(error.message).to include( "Document.find expects the parameters to be 1 or more ids" ) end it "contains the resolution in the message" do expect(error.message).to include( "Most likely this is caused by passing parameters directly" ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems