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