diff options
author | Xavier Noria <fxn@hashref.com> | 2010-02-07 23:03:13 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-02-07 23:03:13 +0100 |
commit | afd2e19be3b74effa3fdb9c4affd48f0aaede838 (patch) | |
tree | 81d15739b66571d3ec78066a8482af3437a8d6ea /activesupport/test | |
parent | b235af702a086dd06fa9849ee47942e8ce82090d (diff) | |
download | rails-afd2e19be3b74effa3fdb9c4affd48f0aaede838.tar.gz rails-afd2e19be3b74effa3fdb9c4affd48f0aaede838.tar.bz2 rails-afd2e19be3b74effa3fdb9c4affd48f0aaede838.zip |
removes Module#included_in_classes, which is no longer used
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/module_test.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb index 87f056ea85..23016fd329 100644 --- a/activesupport/test/core_ext/module_test.rb +++ b/activesupport/test/core_ext/module_test.rb @@ -72,13 +72,6 @@ class ModuleTest < Test::Unit::TestCase @david = Someone.new("David", Somewhere.new("Paulina", "Chicago")) end - def test_included_in_classes - assert One.included_in_classes.include?(Ab) - assert One.included_in_classes.include?(Xy::Bc) - assert One.included_in_classes.include?(Yz::Zy::Cd) - assert !One.included_in_classes.include?(De) - end - def test_delegation_to_methods assert_equal "Paulina", @david.street assert_equal "Chicago", @david.city |