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

Wrap REXML test classes by REXML module.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-05-27 10:21:10 +00:00
parent 1c35277c2b
commit 13a8d735d9
39 changed files with 78 additions and 3 deletions

View file

@ -1,6 +1,7 @@
require "test/unit"
require "rexml/document"
module REXML
class TestParseDocumentTypeDeclaration < Test::Unit::TestCase
private
def xml(internal_subset)
@ -45,3 +46,4 @@ class TestParseDocumentTypeDeclaration < Test::Unit::TestCase
end
end
end
end

View file

@ -1,6 +1,7 @@
require 'test/unit'
require 'rexml/document'
module REXML
class TestParseNotationDeclaration < Test::Unit::TestCase
private
def xml(internal_subset)
@ -95,3 +96,4 @@ class TestParseNotationDeclaration < Test::Unit::TestCase
end
end
end
end