mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
6c434e8b8e
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2904 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
33 lines
843 B
Ruby
33 lines
843 B
Ruby
$:.unshift File.dirname(__FILE__) + "/../lib"
|
|
$:.unshift File.dirname(__FILE__) + "/../../activesupport/lib"
|
|
|
|
require 'test/unit'
|
|
require 'active_support'
|
|
require 'initializer'
|
|
|
|
class InitializerTest < Test::Unit::TestCase
|
|
class ConfigurationMock < Rails::Configuration
|
|
def initialize(envpath)
|
|
super()
|
|
@envpath = envpath
|
|
end
|
|
|
|
def environment_path
|
|
@envpath
|
|
end
|
|
|
|
protected
|
|
def root_path
|
|
File.dirname(__FILE__)
|
|
end
|
|
end
|
|
|
|
def test_load_environment_with_constant
|
|
config = ConfigurationMock.new("#{File.dirname(__FILE__)}/fixtures/environment_with_constant.rb")
|
|
assert_nil $initialize_test_set_from_env
|
|
Rails::Initializer.run(:load_environment, config)
|
|
assert_equal "success", $initialize_test_set_from_env
|
|
ensure
|
|
$initialize_test_set_from_env = nil
|
|
end
|
|
end
|