mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rexml/test_notationdecl_mixin.rb: Remove duplicated tests.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0c1139ea78
commit
6b4a6fcbbf
2 changed files with 4 additions and 51 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Jul 31 22:54:39 2013 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* test/rexml/test_notationdecl_mixin.rb: Remove duplicated tests.
|
||||
|
||||
Wed Jul 31 22:52:55 2013 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* test/rexml/test_notationdecl_parsetest.rb: Fix typos in expected
|
||||
|
|
|
@ -1,51 +0,0 @@
|
|||
require 'test/unit'
|
||||
require 'rexml/document'
|
||||
|
||||
class TestNotationDeclMixin < Test::Unit::TestCase
|
||||
def setup
|
||||
@pubid1 = "TEST1"
|
||||
@pubid2 = "TEST2"
|
||||
@sysid2 = "urn:x-henrikmartensson.org:test2"
|
||||
@pubid3 = "TEST3"
|
||||
@pubid4 = "TEST4"
|
||||
@sysid4 = "urn:x-henrikmartensson.org:test4"
|
||||
@pubid5 = "TEST5"
|
||||
@sysid5 = "urn:x-henrikmartensson.org:test5"
|
||||
@pubid6 = "TEST6"
|
||||
@sysid6 = "urn:x-henrikmartensson.org:test6"
|
||||
@sysid7 = "urn:x-henrikmartensson.org:test7"
|
||||
doc_string = <<-"XMLEND"
|
||||
<!DOCTYPE r SYSTEM "urn:x-henrikmartensson:test" [
|
||||
<!NOTATION n1 PUBLIC "#{@pubid1}">
|
||||
<!NOTATION n2 PUBLIC "#{@pubid2}" "#{@sysid2}">
|
||||
<!NOTATION n3 PUBLIC '#{@pubid3}'>
|
||||
<!NOTATION n4 PUBLIC '#{@pubid4}' '#{@sysid4}'>
|
||||
<!NOTATION n5 PUBLIC "#{@pubid5}" '#{@sysid5}'>
|
||||
<!NOTATION n6 PUBLIC '#{@pubid6}' "#{@sysid6}">
|
||||
<!NOTATION n7 SYSTEM "#{@sysid7}">
|
||||
]>
|
||||
<r/>
|
||||
XMLEND
|
||||
@doctype = REXML::Document.new(doc_string).doctype
|
||||
end
|
||||
|
||||
def test_public_2
|
||||
assert_equal(@pubid1, @doctype.notation('n1').public)
|
||||
assert_equal(@pubid2, @doctype.notation('n2').public)
|
||||
assert_equal(@pubid3, @doctype.notation('n3').public)
|
||||
assert_equal(@pubid4, @doctype.notation('n4').public)
|
||||
assert_equal(@pubid5, @doctype.notation('n5').public)
|
||||
assert_equal(@pubid6, @doctype.notation('n6').public)
|
||||
assert_nil(@doctype.notation('n7').public)
|
||||
end
|
||||
|
||||
def test_system_2
|
||||
assert_equal(@sysid2, @doctype.notation('n2').system)
|
||||
assert_nil(@doctype.notation('n3').system)
|
||||
assert_equal(@sysid4, @doctype.notation('n4').system)
|
||||
assert_equal(@sysid5, @doctype.notation('n5').system)
|
||||
assert_equal(@sysid6, @doctype.notation('n6').system)
|
||||
assert_equal(@sysid7, @doctype.notation('n7').system)
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in a new issue