mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rexml/test_document.rb: Wrap by REXMLTests module.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cb50e15e0d
commit
875f071500
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue May 27 22:15:29 2014 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* test/rexml/test_document.rb: Wrap by REXMLTests module.
|
||||
|
||||
Tue May 27 22:11:10 2014 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* test/rexml/test_encoding_2.rb: Remove a needless file.
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
require "rexml/document"
|
||||
require "test/unit"
|
||||
|
||||
class REXML::TestDocument < Test::Unit::TestCase
|
||||
module REXMLTests
|
||||
class TestDocument < Test::Unit::TestCase
|
||||
def test_version_attributes_to_s
|
||||
doc = REXML::Document.new(<<-eoxml)
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
@ -317,3 +318,4 @@ EOX
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue