aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 12:32:24 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-31 12:32:24 +0000
commit5a5ede7359a8817ad64f0aa84983926275bd1b20 (patch)
treebc2648ded1b75a3e03f84a4d24b647d361efdffe /test
parenta9c4b0f497616d914cafc469c9c836fe59fbb1db (diff)
downloadruby-5a5ede7359a8817ad64f0aa84983926275bd1b20.tar.gz
* test/rexml/test_notationdecl_parsetest.rb: Remove setup because it
doesn't share anything with other tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/rexml/test_notationdecl_parsetest.rb26
1 files changed, 16 insertions, 10 deletions
diff --git a/test/rexml/test_notationdecl_parsetest.rb b/test/rexml/test_notationdecl_parsetest.rb
index a1fa9fb67e..547195d47b 100644
--- a/test/rexml/test_notationdecl_parsetest.rb
+++ b/test/rexml/test_notationdecl_parsetest.rb
@@ -2,20 +2,26 @@ require 'test/unit'
require 'rexml/document'
class TestNotationDecl < Test::Unit::TestCase
- def setup
- doc_string = <<-'XMLEND'
- <!DOCTYPE r SYSTEM "urn:x-henrikmartensson:test" [
+ 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">
- ]>
- <r/>
- XMLEND
- @doctype = REXML::Document.new(doc_string).doctype
+ INTERNAL_SUBSET
+ assert(doctype.notation('n1'), "Testing notation n1")
+ assert(doctype.notation('n2'), "Testing notation n2")
end
- def test_notation
- assert(@doctype.notation('n1'), "Testing notation n1")
- assert(@doctype.notation('n2'), "Testing notation n2")
+ private
+ def xml(internal_subset)
+ <<-XML
+<!DOCTYPE r SYSTEM "urn:x-henrikmartensson:test" [
+#{internal_subset}
+]>
+<r/>
+ XML
end
+ def parse(internal_subset)
+ REXML::Document.new(xml(internal_subset)).doctype
+ end
end