1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/test/loading_module_tests.rb
2005-02-15 01:45:35 +00:00

63 lines
No EOL
2.1 KiB
Ruby

require 'test/unit'
require '../lib/core_ext.rb'
require '../lib/dependencies.rb'
STAGING_DIRECTORY = 'loading_module'
class LoadingModuleTests < Test::Unit::TestCase
def setup
@loading_module = Dependencies::LoadingModule.new(STAGING_DIRECTORY)
Object.const_set(:Controllers, @loading_module)
end
def teardown
@loading_module.clear
Object.send :remove_const, :Controllers
end
def test_setup
assert_kind_of Dependencies::LoadingModule, @loading_module
end
def test_const_available
assert @loading_module.const_available?(:Admin)
assert @loading_module.const_available?(:ResourceController)
assert @loading_module.const_available?(:ContentController)
assert @loading_module.const_available?("ContentController")
assert_equal false, @loading_module.const_available?(:AdminController)
assert_equal false, @loading_module.const_available?(:RandomName)
end
def test_const_load_module
assert @loading_module.const_load!(:Admin)
assert_kind_of Module, @loading_module::Admin
assert_kind_of Dependencies::LoadingModule, @loading_module::Admin
end
def test_const_load_controller
assert @loading_module.const_load!(:ContentController)
assert_kind_of Class, @loading_module::ContentController
end
def test_const_load_nested_controller
assert @loading_module.const_load!(:Admin)
assert @loading_module::Admin.const_available?(:UserController)
assert @loading_module::Admin.const_load!(:UserController)
assert_kind_of Class, @loading_module::Admin::UserController
end
def test_pretty_access
assert_kind_of Module, @loading_module::Admin
assert_kind_of Dependencies::LoadingModule, @loading_module::Admin
assert_kind_of Class, @loading_module::Admin::UserController
assert_kind_of Class, @loading_module::Admin::AccessController
assert_kind_of Class, @loading_module::ResourceController
assert_kind_of Class, @loading_module::ContentController
end
def test_missing_name
assert_raises(NameError) {@loading_module::PersonController}
assert_raises(NameError) {@loading_module::Admin::FishController}
end
end