Sha256: 10c4a0dfefccdf430c197ede8d7cef16a8e7006cc8f9eaf6f232efd984cd8b24
Contents?: true
Size: 752 Bytes
Versions: 27
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 require "spec_helper" describe Mongoid::Errors::NoEnvironment do describe "#message" do let(:error) do described_class.new end it "contains the problem in the message" do expect(error.message).to include( "Could not load the configuration since no environment was defined." ) end it "contains the summary in the message" do expect(error.message).to include( "Mongoid attempted to find the appropriate environment but no Rails.env" ) end it "contains the resolution in the message" do expect(error.message).to include( "Make sure some environment is set from the mentioned options" ) end end end
Version data entries
27 entries across 27 versions & 2 rubygems