aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/module_test.rb5
-rw-r--r--activesupport/test/dependencies_test.rb5
2 files changed, 0 insertions, 10 deletions
diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb
index 23016fd329..1fe75d5930 100644
--- a/activesupport/test/core_ext/module_test.rb
+++ b/activesupport/test/core_ext/module_test.rb
@@ -163,11 +163,6 @@ class ModuleTest < Test::Unit::TestCase
def test_local_constants
assert_equal %w(Constant1 Constant3), Ab.local_constants.sort.map(&:to_s)
end
-
- def test_as_load_path
- assert_equal 'yz/zy', Yz::Zy.as_load_path
- assert_equal 'yz', Yz.as_load_path
- end
end
module BarMethodAliaser
diff --git a/activesupport/test/dependencies_test.rb b/activesupport/test/dependencies_test.rb
index 0fcf1eaf00..f782313411 100644
--- a/activesupport/test/dependencies_test.rb
+++ b/activesupport/test/dependencies_test.rb
@@ -1,7 +1,6 @@
require 'abstract_unit'
require 'pp'
require 'active_support/dependencies'
-require 'active_support/core_ext/module/loading'
require 'active_support/core_ext/kernel/reporting'
module ModuleWithMissing
@@ -130,10 +129,6 @@ class DependenciesTest < Test::Unit::TestCase
end
end
- def test_as_load_path
- assert_equal '', DependenciesTest.as_load_path
- end
-
def test_module_loading
with_autoloading_fixtures do
assert_kind_of Module, A