From 4e44eeaeb103f9ad43acc991918a4ae3cd1049cf Mon Sep 17 00:00:00 2001 From: kou Date: Fri, 26 Apr 2013 14:36:30 +0000 Subject: * lib/rexml/text.rb (REXML::Text.normalize): Fix a bug that all entity filters are ignored. [ruby-dev:47278] [Bug #8302] Patch by Ippei Obayashi. Thanks!!! * test/rexml/test_entity.rb (EntityTester#test_entity_filter): Add a test of the above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rexml/test_entity.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'test/rexml/test_entity.rb') diff --git a/test/rexml/test_entity.rb b/test/rexml/test_entity.rb index 5900fac7a8..7b9f39495f 100644 --- a/test/rexml/test_entity.rb +++ b/test/rexml/test_entity.rb @@ -164,4 +164,24 @@ class EntityTester < Test::Unit::TestCase def test_single_pass_unnormalization # ticket 123 assert_equal '&&', REXML::Text::unnormalize('&amp;&') end + + def test_entity_filter + document = REXML::Document.new(<<-XML) + + +]> + +XML + respect_whitespace = false + parent = document.root + raw = false + entity_filter = ["copy"] + assert_equal("(c) &release-year;", + REXML::Text.new("(c) 2013", + respect_whitespace, + parent, + raw, + entity_filter).to_s) + end end -- cgit v1.2.3