Adds a method to temporarily override configuration settings.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4949 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2011-02-25 14:30:05 +00:00
parent 2b80f46361
commit e1ad561cf6
2 changed files with 19 additions and 0 deletions

View File

@ -66,6 +66,16 @@ module Redmine
@config[name]
end
# Yields a block with the specified hash configuration settings
def with(settings)
settings.stringify_keys!
load unless @config
was = settings.keys.inject({}) {|h,v| h[v] = @config[v]; h}
@config.merge! settings
yield if block_given?
@config.merge! was
end
private
def load_from_yaml(filename, env)

View File

@ -41,6 +41,15 @@ class Redmine::ConfigurationTest < ActiveSupport::TestCase
assert_equal 'bar', @conf['somesetting']
end
def test_with
load_conf('default.yml', 'test')
assert_equal 'foo', @conf['somesetting']
@conf.with 'somesetting' => 'bar' do
assert_equal 'bar', @conf['somesetting']
end
assert_equal 'foo', @conf['somesetting']
end
private
def load_conf(file, env)