aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/hash_ext_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-09-20 09:34:29 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-09-20 09:34:29 +0000
commit54c393f5fa2dfd5ff5866cba74e7179f493732df (patch)
tree71f7ad34c813ee02081f4f7b8ab01038d292d03e /activesupport/test/core_ext/hash_ext_test.rb
parent5ddc82c3a11a71806ea91f66fdb28fbbe30716f7 (diff)
downloadrails-54c393f5fa2dfd5ff5866cba74e7179f493732df.tar.gz
rails-54c393f5fa2dfd5ff5866cba74e7179f493732df.tar.bz2
rails-54c393f5fa2dfd5ff5866cba74e7179f493732df.zip
Hash.create_from_xml has been renamed to Hash.from_xml, alias will exist until Rails 2.0 [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5149 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext/hash_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/hash_ext_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb
index d2372dcc32..df4aadfbcc 100644
--- a/activesupport/test/core_ext/hash_ext_test.rb
+++ b/activesupport/test/core_ext/hash_ext_test.rb
@@ -336,7 +336,7 @@ class HashToXmlTest < Test::Unit::TestCase
:parent_id => nil
}.stringify_keys
- assert_equal expected_topic_hash, Hash.create_from_xml(topic_xml)["topic"]
+ assert_equal expected_topic_hash, Hash.from_xml(topic_xml)["topic"]
end
def test_single_record_from_xml_with_nil_values
@@ -360,7 +360,7 @@ class HashToXmlTest < Test::Unit::TestCase
:parent_id => nil
}.stringify_keys
- assert_equal expected_topic_hash, Hash.create_from_xml(topic_xml)["topic"]
+ assert_equal expected_topic_hash, Hash.from_xml(topic_xml)["topic"]
end
def test_multiple_records_from_xml
@@ -406,7 +406,7 @@ class HashToXmlTest < Test::Unit::TestCase
:parent_id => nil
}.stringify_keys
- assert_equal expected_topic_hash, Hash.create_from_xml(topics_xml)["topics"]["topic"].first
+ assert_equal expected_topic_hash, Hash.from_xml(topics_xml)["topics"]["topic"].first
end
def test_single_record_from_xml_with_attributes_other_than_type
@@ -429,7 +429,7 @@ class HashToXmlTest < Test::Unit::TestCase
:isfamily => "0",
}.stringify_keys
- assert_equal expected_topic_hash, Hash.create_from_xml(topic_xml)["rsp"]["photos"]["photo"]
+ assert_equal expected_topic_hash, Hash.from_xml(topic_xml)["rsp"]["photos"]["photo"]
end
def test_should_use_default_value_for_unknown_key