Sha256: af57b20d4185c5f2cf573245da2ce842293833935b68b5adc1d6c4c4b56e21c5
Contents?: true
Size: 673 Bytes
Versions: 73
Compression:
Stored size: 673 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::InvalidConfigOption do describe "#message" do let(:error) do described_class.new(:bad_option) end it "contains the problem in the message" do expect(error.message).to include( "Invalid configuration option: bad_option." ) end it "contains the summary in the message" do expect(error.message).to include( "A invalid configuration option was provided in your mongoid.yml," ) end it "contains the resolution in the message" do expect(error.message).to include( "Remove the invalid option or fix the typo." ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems