Sha256: 4186ed8de54d0619a25b1bd84cea04349c2ca7b5118fc85d60a3ad13f3512e56
Contents?: true
Size: 711 Bytes
Versions: 73
Compression:
Stored size: 711 Bytes
Contents
require "spec_helper" describe Mongoid::Errors::InvalidStorageOptions do describe "#message" do let(:error) do described_class.new(Band, :bad_option) end it "contains the problem in the message" do expect(error.message).to include( "Invalid options passed to Band.store_in: bad_option." ) end it "contains the summary in the message" do expect(error.message).to include( "The :store_in macro takes only a hash of parameters with the" ) end it "contains the resolution in the message" do expect(error.message).to include( "Change the options passed to store_in to match the documented API" ) end end end
Version data entries
73 entries across 68 versions & 6 rubygems