diff options
author | José Valim <jose.valim@gmail.com> | 2011-05-07 22:44:33 +0200 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-05-07 22:45:06 +0200 |
commit | 803548c46b32d1be760b21da80477f43b801b8e9 (patch) | |
tree | efae8549c21afdb905b0c1c6fe24e1125330e1e4 /activesupport/test | |
parent | 3a82ff9555adc59e62cf8cebdc90ccad8b26b297 (diff) | |
download | rails-803548c46b32d1be760b21da80477f43b801b8e9.tar.gz rails-803548c46b32d1be760b21da80477f43b801b8e9.tar.bz2 rails-803548c46b32d1be760b21da80477f43b801b8e9.zip |
xml_mini_test.rb now runs.
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/xml_mini_test.rb (renamed from activesupport/test/test_xml_mini.rb) | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/test/test_xml_mini.rb b/activesupport/test/xml_mini_test.rb index 6dbcd1f40b..bf6b0b283d 100644 --- a/activesupport/test/test_xml_mini.rb +++ b/activesupport/test/xml_mini_test.rb @@ -16,14 +16,6 @@ module XmlMiniTest assert_equal "my_key", ActiveSupport::XmlMini.rename_key("my_key", :dasherize => false) end - def test_rename_key_camelizes_with_camelize_false - assert_equal "my_key", ActiveSupport::XmlMini.rename_key("my_key", :camelize => false) - end - - def test_rename_key_camelizes_with_camelize_nil - assert_equal "my_key", ActiveSupport::XmlMini.rename_key("my_key", :camelize => nil) - end - def test_rename_key_camelizes_with_camelize_true assert_equal "MyKey", ActiveSupport::XmlMini.rename_key("my_key", :camelize => true) end |