1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/rexml/test_notationdecl_parsetest.rb: Split test patterns.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42281 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2013-07-31 12:59:28 +00:00
parent 3e04769926
commit 43f944dcf1
2 changed files with 20 additions and 7 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 31 21:58:53 2013 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_notationdecl_parsetest.rb: Split test patterns.
Wed Jul 31 21:42:33 2013 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_notationdecl_parsetest.rb: Group tests.

View file

@ -24,13 +24,22 @@ class TestNotationDecl < Test::Unit::TestCase
end
class TestExternID < self
def test_notation
doctype = parse(<<-INTERNAL_SUBSET)
<!NOTATION n1 PUBLIC "-//HM//NOTATION TEST1//EN" 'urn:x-henrikmartensson.org:test5'>
<!NOTATION n2 PUBLIC '-//HM//NOTATION TEST2//EN' "urn:x-henrikmartensson.org:test6">
INTERNAL_SUBSET
assert(doctype.notation('n1'), "Testing notation n1")
assert(doctype.notation('n2'), "Testing notation n2")
class TestPublic < self
class TestSystemLiteral < self
def test_single_quote
doctype = parse(<<-INTERNAL_SUBSET)
<!NOTATION name PUBLIC "public-id-literal" 'system-literal'>
INTERNAL_SUBSET
assert_equal("system-literal", doctype.notation("name").system)
end
def test_double_quote
doctype = parse(<<-INTERNAL_SUBSET)
<!NOTATION name PUBLIC "public-id-literal" "system-literal">
INTERNAL_SUBSET
assert_equal("system-literal", doctype.notation("name").system)
end
end
end
end
end