Sha256: 7807f30efb5d69995a98291aa7835640c129f9bb505b0f541ee8b0ba3c8eab30
Contents?: true
Size: 777 Bytes
Versions: 27
Compression:
Stored size: 777 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::InvalidOptions do describe "#message" do let(:error) do described_class.new(:name, :invalid, [ :valid ]) end it "contains the problem in the message" do expect(error.message).to include( "Invalid option :invalid provided to association :name." ) end it "contains the summary in the message" do expect(error.message).to include( "Mongoid checks the options that are passed to the association macros" ) end it "contains the resolution in the message" do expect(error.message).to include( "Valid options are: valid, make sure these are the ones you are using." ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems