diff options
author | Marcel Molina <marcel@vernix.org> | 2006-05-22 15:17:45 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-05-22 15:17:45 +0000 |
commit | f91096a543895a49876ec8e276cefefff6fdbe5a (patch) | |
tree | 83b1e93f4f36c426da7e3c005cbaf187165d427d /activesupport/test | |
parent | 213992195d63ca8992676c1c51c276f9801c2d58 (diff) | |
download | rails-f91096a543895a49876ec8e276cefefff6fdbe5a.tar.gz rails-f91096a543895a49876ec8e276cefefff6fdbe5a.tar.bz2 rails-f91096a543895a49876ec8e276cefefff6fdbe5a.zip |
Normalize classify's argument to a String so that it plays nice with Symbols. [Marcel Molina Jr.]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4359 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/inflector_test.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb index c0a2b76a5a..e1676281ad 100644 --- a/activesupport/test/inflector_test.rb +++ b/activesupport/test/inflector_test.rb @@ -278,6 +278,12 @@ class InflectorTest < Test::Unit::TestCase assert_equal(class_name, Inflector.classify(table_name)) end end + + def test_classify_with_symbol + assert_nothing_raised do + assert_equal 'FooBar', Inflector.classify(:foo_bar) + end + end def test_humanize UnderscoreToHuman.each do |underscore, human| |