aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_xml_declaration.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 13:10:55 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 13:10:55 +0000
commitba3d2f4ac20bec871fe96a393d923d0cbb0fd96a (patch)
tree897a0308607db1dad21eef1fee86b351e93ebfa5 /test/rexml/test_xml_declaration.rb
parent313fa180333a1eb4d1fa1542930e83f8d77e6b2d (diff)
downloadruby-ba3d2f4ac20bec871fe96a393d923d0cbb0fd96a.tar.gz
* test/rexml/test_contrib.rb: Indent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml/test_xml_declaration.rb')
-rw-r--r--test/rexml/test_xml_declaration.rb42
1 files changed, 21 insertions, 21 deletions
diff --git a/test/rexml/test_xml_declaration.rb b/test/rexml/test_xml_declaration.rb
index a7b7023ad4..a96d40c542 100644
--- a/test/rexml/test_xml_declaration.rb
+++ b/test/rexml/test_xml_declaration.rb
@@ -7,29 +7,29 @@ require "rexml/document"
require "test/unit"
module REXMLTests
-class TestXmlDeclaration < Test::Unit::TestCase
- def setup
- xml = <<-'END_XML'
- <?xml encoding= 'UTF-8' standalone='yes'?>
- <root>
- </root>
- END_XML
- @doc = REXML::Document.new xml
- @root = @doc.root
- @xml_declaration = @doc.children[0]
- end
+ class TestXmlDeclaration < Test::Unit::TestCase
+ def setup
+ xml = <<-'END_XML'
+ <?xml encoding= 'UTF-8' standalone='yes'?>
+ <root>
+ </root>
+ END_XML
+ @doc = REXML::Document.new xml
+ @root = @doc.root
+ @xml_declaration = @doc.children[0]
+ end
- def test_is_first_child
- assert_kind_of(REXML::XMLDecl, @xml_declaration)
- end
+ def test_is_first_child
+ assert_kind_of(REXML::XMLDecl, @xml_declaration)
+ end
- def test_has_document_as_parent
- assert_kind_of(REXML::Document, @xml_declaration.parent)
- end
+ def test_has_document_as_parent
+ assert_kind_of(REXML::Document, @xml_declaration.parent)
+ end
- def test_has_sibling
- assert_kind_of(REXML::XMLDecl, @root.previous_sibling.previous_sibling)
- assert_kind_of(REXML::Element, @xml_declaration.next_sibling.next_sibling)
+ def test_has_sibling
+ assert_kind_of(REXML::XMLDecl, @root.previous_sibling.previous_sibling)
+ assert_kind_of(REXML::Element, @xml_declaration.next_sibling.next_sibling)
+ end
end
end
-end