summaryrefslogtreecommitdiff
path: root/jni/ruby/test/rexml/test_comment.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/rexml/test_comment.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/rexml/test_comment.rb')
-rw-r--r--jni/ruby/test/rexml/test_comment.rb25
1 files changed, 25 insertions, 0 deletions
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 version="1.0"?>
+<!DOCTYPE root [
+<!-- comment end with hyphen -
+ here -->
+]>
+<root/>
+ 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