From 73c57761a91e9a9240aea829453cc545ed033fee Mon Sep 17 00:00:00 2001 From: kou Date: Tue, 3 Sep 2013 14:01:20 +0000 Subject: * lib/rexml/parsers/treeparser.rb (REXML::Parsers::TreeParser#parse): Add source information to parse exception on no close tag error. [Bug #8844] [ruby-dev:47672] Patch by Ippei Obayashi. Thanks!!! * test/rexml/parser/test_tree.rb: Add a test for the above case. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42815 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rexml/parser/test_tree.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'test/rexml') diff --git a/test/rexml/parser/test_tree.rb b/test/rexml/parser/test_tree.rb index 7720e9531a..6754e6bb59 100644 --- a/test/rexml/parser/test_tree.rb +++ b/test/rexml/parser/test_tree.rb @@ -17,6 +17,19 @@ Last 80 unconsumed characters: MESSAGE end + def test_no_close_tag + xml = "" + exception = assert_raise(REXML::ParseException) do + parse(xml) + end + assert_equal(<<-MESSAGE, exception.to_s) +No close tag for /root +Line: 1 +Position: #{xml.bytesize} +Last 80 unconsumed characters: + MESSAGE + end + private def parse(xml) document = REXML::Document.new -- cgit v1.2.3