From a41ab7b3b6389da755eeccf429c9ca24f2ef903f Mon Sep 17 00:00:00 2001 From: kou Date: Wed, 31 Jul 2013 13:04:10 +0000 Subject: * test/rexml/test_notationdecl_parsetest.rb: Add tests that focus public ID in external ID notation declaration. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rexml/test_notationdecl_parsetest.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test') diff --git a/test/rexml/test_notationdecl_parsetest.rb b/test/rexml/test_notationdecl_parsetest.rb index 27433c8626..e46e66e1bb 100644 --- a/test/rexml/test_notationdecl_parsetest.rb +++ b/test/rexml/test_notationdecl_parsetest.rb @@ -25,6 +25,22 @@ class TestNotationDecl < Test::Unit::TestCase class TestExternID < self class TestPublic < self + class TestPublicIDLiteral < self + def test_single_quote + doctype = parse(<<-INTERNAL_SUBSET) + + INTERNAL_SUBSET + assert_equal("pubilc-id-literal", doctype.notation("name").public) + end + + def test_double_quote + doctype = parse(<<-INTERNAL_SUBSET) + + INTERNAL_SUBSET + assert_equal("pubilc-id-literal", doctype.notation("name").public) + end + end + class TestSystemLiteral < self def test_single_quote doctype = parse(<<-INTERNAL_SUBSET) -- cgit v1.2.3