Sha256: d0cf0c0944269f3a6845cb78e78d6e9273ec500f909c442b79e36e5077204fba
Contents?: true
Size: 765 Bytes
Versions: 5
Compression:
Stored size: 765 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe Castronaut do after(:all) do Castronaut.config = Castronaut::Configuration.load(File.join(File.dirname(__FILE__), '..', 'castronaut.example.yml')) end it "exposes the config at Castronaut.config" do Castronaut.config.should == Castronaut.instance_variable_get("@cas_config") end it "allows you to reset the config" do new_config = stub_everything original_config = Castronaut.config Castronaut.config.should_not == new_config Castronaut.config = new_config Castronaut.config.should == new_config end it "exposes the configuration logger as Castronaut.logger" do Castronaut.logger.should == Castronaut.config.logger end end
Version data entries
5 entries across 5 versions & 1 rubygems