aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-12-14 10:07:06 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2008-12-15 11:01:04 -0800
commit262fef7ed57520b857605a0105fe7ba9265654f6 (patch)
tree1cf1baaea3ded200027a99d7816a2d7d338cffe4 /activesupport/test
parent7c18518105e98ccfd89fe64194ede27824dfe8b3 (diff)
downloadrails-262fef7ed57520b857605a0105fe7ba9265654f6.tar.gz
rails-262fef7ed57520b857605a0105fe7ba9265654f6.tar.bz2
rails-262fef7ed57520b857605a0105fe7ba9265654f6.zip
Make constantize look into ancestors
[#410 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/inflector_test.rb17
1 files changed, 16 insertions, 1 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index d8c93dc9ae..2c422ebe72 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -2,8 +2,21 @@ require 'abstract_unit'
require 'inflector_test_cases'
module Ace
+ module Extension
+ def self.included(base)
+ base.extend(ClassMethods)
+ end
+
+ module ClassMethods
+ def mission_accomplished?
+ false
+ end
+ end
+ end
+
module Base
class Case
+ include Extension
end
end
end
@@ -167,7 +180,9 @@ class InflectorTest < Test::Unit::TestCase
end
def test_constantize_does_lexical_lookup
- assert_raises(NameError) { ActiveSupport::Inflector.constantize("Ace::Base::InflectorTest") }
+ assert_equal InflectorTest, ActiveSupport::Inflector.constantize("Ace::Base::InflectorTest")
+ assert_nothing_raised { Ace::Base::Case::ClassMethods }
+ assert_nothing_raised { assert_equal Ace::Base::Case::ClassMethods, ActiveSupport::Inflector.constantize("Ace::Base::Case::ClassMethods") }
end
def test_ordinal