Sha256: c747672d7979661881ea9af5d122d6c706e2cc04ed30b69a909f1c5d4080e12f
Contents?: true
Size: 703 Bytes
Versions: 73
Compression:
Stored size: 703 Bytes
Contents
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
73 entries across 68 versions & 6 rubygems