mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/rexml/: untabify.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
146bf4fdaf
commit
2a15d25a59
23 changed files with 1668 additions and 1673 deletions
|
@ -1104,9 +1104,9 @@ EOL
|
|||
end
|
||||
|
||||
def test_transitive
|
||||
doc = REXML::Document.new( "<a/>")
|
||||
s = ""
|
||||
doc.write( s, 0, true )
|
||||
doc = REXML::Document.new( "<a/>")
|
||||
s = ""
|
||||
doc.write( s, 0, true )
|
||||
end
|
||||
|
||||
# This is issue #40
|
||||
|
@ -1145,25 +1145,25 @@ EOL
|
|||
end
|
||||
|
||||
|
||||
def test_ticket_58
|
||||
doc = REXML::Document.new
|
||||
doc << REXML::XMLDecl.default
|
||||
doc << REXML::Element.new("a")
|
||||
|
||||
str = ""
|
||||
doc.write(str)
|
||||
|
||||
assert_equal("<a/>", str)
|
||||
def test_ticket_58
|
||||
doc = REXML::Document.new
|
||||
doc << REXML::XMLDecl.default
|
||||
doc << REXML::Element.new("a")
|
||||
|
||||
str = ""
|
||||
doc.write(str)
|
||||
|
||||
assert_equal("<a/>", str)
|
||||
|
||||
doc = REXML::Document.new
|
||||
doc << REXML::XMLDecl.new("1.0", "UTF-8")
|
||||
doc << REXML::Element.new("a")
|
||||
|
||||
str = ""
|
||||
doc.write(str)
|
||||
|
||||
assert_equal("<?xml version='1.0' encoding='UTF-8'?><a/>", str)
|
||||
end
|
||||
doc = REXML::Document.new
|
||||
doc << REXML::XMLDecl.new("1.0", "UTF-8")
|
||||
doc << REXML::Element.new("a")
|
||||
|
||||
str = ""
|
||||
doc.write(str)
|
||||
|
||||
assert_equal("<?xml version='1.0' encoding='UTF-8'?><a/>", str)
|
||||
end
|
||||
|
||||
# Incomplete tags should generate an error
|
||||
def test_ticket_53
|
||||
|
@ -1251,9 +1251,9 @@ EOL
|
|||
def test_ticket_85
|
||||
xml = <<ENDXML
|
||||
<foo>
|
||||
<bar>
|
||||
<bob name='jimmy'/>
|
||||
</bar>
|
||||
<bar>
|
||||
<bob name='jimmy'/>
|
||||
</bar>
|
||||
</foo>
|
||||
ENDXML
|
||||
|
||||
|
@ -1276,7 +1276,7 @@ ENDXML
|
|||
# Output directives should override whitespace directives.
|
||||
assert_equal( output1, output2 )
|
||||
|
||||
# The base case.
|
||||
# The base case.
|
||||
d = Document.new(yml)
|
||||
f.write( d, output3="" )
|
||||
|
||||
|
@ -1286,7 +1286,7 @@ ENDXML
|
|||
f.write( d, output4="" )
|
||||
|
||||
assert_equal( output3.strip, output4.strip )
|
||||
end
|
||||
end
|
||||
|
||||
def test_ticket_91
|
||||
source="<root>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue