aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_text.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rexml/test_text.rb')
-rw-r--r--test/rexml/test_text.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/rexml/test_text.rb b/test/rexml/test_text.rb
index 9aa0e2f68e..52ee11ef78 100644
--- a/test/rexml/test_text.rb
+++ b/test/rexml/test_text.rb
@@ -1,21 +1,21 @@
require "rexml/text"
module REXMLTests
-class TextTester < Test::Unit::TestCase
- include REXML
+ class TextTester < Test::Unit::TestCase
+ include REXML
- def test_shift_operator_chain
- text = Text.new("original\r\n")
- text << "append1\r\n" << "append2\r\n"
- assert_equal("original\nappend1\nappend2\n", text.to_s)
- end
+ def test_shift_operator_chain
+ text = Text.new("original\r\n")
+ text << "append1\r\n" << "append2\r\n"
+ assert_equal("original\nappend1\nappend2\n", text.to_s)
+ end
- def test_shift_operator_cache
- text = Text.new("original\r\n")
- text << "append1\r\n" << "append2\r\n"
- assert_equal("original\nappend1\nappend2\n", text.to_s)
- text << "append3\r\n" << "append4\r\n"
- assert_equal("original\nappend1\nappend2\nappend3\nappend4\n", text.to_s)
+ def test_shift_operator_cache
+ text = Text.new("original\r\n")
+ text << "append1\r\n" << "append2\r\n"
+ assert_equal("original\nappend1\nappend2\n", text.to_s)
+ text << "append3\r\n" << "append4\r\n"
+ assert_equal("original\nappend1\nappend2\nappend3\nappend4\n", text.to_s)
+ end
end
end
-end