1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
require 'spec_helper'
describe Configurate::Provider::Dynamic do
subject { described_class.new }
describe "#lookup_path" do
it "returns nil if the setting was never set" do
subject.lookup_path(Configurate::SettingPath.new(["not_me"])).should be_nil
end
it "remembers the setting if it ends with =" do
subject.lookup_path(Configurate::SettingPath.new(["find_me", "later="]), "there")
subject.lookup_path(Configurate::SettingPath.new(["find_me", "later"])).should == "there"
end
it "calls .get on the argument if a proxy object is given" do
proxy = mock
proxy.stub(:respond_to?).and_return(true)
proxy.stub(:_proxy?).and_return(true)
proxy.should_receive(:get)
subject.lookup_path(Configurate::SettingPath.new(["bla="]), proxy)
end
end
end
|