From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/rexml/test_comment.rb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 jni/ruby/test/rexml/test_comment.rb (limited to 'jni/ruby/test/rexml/test_comment.rb') diff --git a/jni/ruby/test/rexml/test_comment.rb b/jni/ruby/test/rexml/test_comment.rb new file mode 100644 index 0000000..d5e78a5 --- /dev/null +++ b/jni/ruby/test/rexml/test_comment.rb @@ -0,0 +1,25 @@ +require "test/unit/testcase" + +require 'rexml/document' + +module REXMLTests + class CommentTester < Test::Unit::TestCase + # Bug #5278 + def test_hyphen_end_line_in_doctype + xml = <<-XML + + +]> + + XML + document = REXML::Document.new(xml) + comments = document.doctype.children.find_all do |child| + child.is_a?(REXML::Comment) + end + assert_equal([" comment end with hyphen -\n here "], + comments.collect(&:to_s)) + end + end +end -- cgit v1.2.3