summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-27 14:57:55 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-27 14:57:55 +0000
commit40e7d793917c1c00fed590814d401ffd1d341991 (patch)
treecc133cc0e2a2f719241f9581f91b7ad596b5d646
parent7bb29d4b320fd2e97bc2b879c96945ea472db2b0 (diff)
* test/rexml/test_core.rb (Tester::test_text_frozen): split frozen
string test. refs #4783 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31752 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/rexml/test_core.rb9
2 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a300df8af..ca1eb95833 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri May 27 23:56:54 2011 Kouhei Sutou <kou@cozmixng.org>
+
+ * test/rexml/test_core.rb (Tester::test_text_frozen): split frozen
+ string test. refs #4783
+
Fri May 27 22:46:23 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* tool/rbinstall.rb (gem): install gemspec of json. fixed #4784
diff --git a/test/rexml/test_core.rb b/test/rexml/test_core.rb
index d6d62713f0..e781fe6e25 100644
--- a/test/rexml/test_core.rb
+++ b/test/rexml/test_core.rb
@@ -349,9 +349,6 @@ class Tester < Test::Unit::TestCase
assert_equal(string, text.to_s)
text2 = Text.new(text)
assert_equal(text, text2)
- string = "Frozen".freeze
- text3 = Text.new(string)
- assert_equal(string, text3.to_s)
#testing substitution
string = "0 < ( 1 & 1 )"
correct = "0 &lt; ( 1 &amp; 1 )"
@@ -403,6 +400,12 @@ class Tester < Test::Unit::TestCase
assert_equal( '<a><b/><c/></a>', doc.to_s )
end
+ def test_text_frozen
+ string = "Frozen".freeze
+ text = Text.new(string)
+ assert_equal(string, text.to_s)
+ end
+
def test_xmldecl
source = "<?xml version='1.0'?>"
# test args