diff options
-rw-r--r-- | activerecord/test/xml_serialization_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/test/xml_serialization_test.rb b/activerecord/test/xml_serialization_test.rb index b32a55a786..b40fa0b84e 100644 --- a/activerecord/test/xml_serialization_test.rb +++ b/activerecord/test/xml_serialization_test.rb @@ -146,6 +146,8 @@ class DatabaseConnectedXmlSerializationTest < Test::Unit::TestCase def test_include_uses_association_name xml = authors(:david).to_xml :include=>:hello_posts, :indent=>0 - assert(xml.include?(%(<hello_posts><post>)) || xml.include?(%(</post></hello-posts>))) + assert_match %r{<hello-posts>}, xml + assert_match %r{<post>}, xml + assert_match %r{<sti-post>}, xml end end
\ No newline at end of file |