Sha256: 8c7847cd39bcb20b79db9f56884b98288695ff294266198d8598d4434c772b58
Contents?: true
Size: 748 Bytes
Versions: 27
Compression:
Stored size: 748 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::MixedClientConfiguration do describe "#message" do let(:error) do described_class.new(:testing, { uri: "blah" }) end it "contains the problem in the message" do expect(error.message).to include( "Both uri and standard configuration options defined" ) end it "contains the summary in the message" do expect(error.message).to include( "Instead of simply giving uri or standard options a preference" ) end it "contains the resolution in the message" do expect(error.message).to include( "Provide either only a uri as configuration" ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems