aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/inflector_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/inflector_test.rb')
-rw-r--r--activesupport/test/inflector_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index d0d7b0bedd..c513abc967 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -274,7 +274,9 @@ class InflectorTest < Test::Unit::TestCase
def test_constantize
assert_equal Ace::Base::Case, Inflector.constantize("Ace::Base::Case")
+ assert_equal Ace::Base::Case, Inflector.constantize("::Ace::Base::Case")
assert_equal InflectorTest, Inflector.constantize("InflectorTest")
+ assert_equal InflectorTest, Inflector.constantize("::InflectorTest")
assert_raises(NameError) { Inflector.constantize("UnknownClass") }
assert_raises(NameError) { Inflector.constantize("An invalid string") }
end