summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-27 02:50:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-27 02:50:56 +0000
commit509cfc4c37f40e195b6c5c1f9a549cec14e00a8b (patch)
treec4c16eefafb026dc7589f423984822d98408d17c /ChangeLog
parent5a75eabed5d82d6430755bdc993fe5b3c467fd31 (diff)
Add tests for String#lstrip and rstrip
* test/ruby/test_string.rb (test_rstrip, test_lstrip): Add tests for String#lstrip and rstrip. The test cases are used from string.c ruby-doc comments. [Fix GH-1174] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 17d2aedbdc..8a1d9c73c9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,14 @@
+Sun Dec 27 11:50:53 2015 Kuniaki IGARASHI <igaiga@gmail.com>
+
+ * test/ruby/test_string.rb (test_rstrip, test_lstrip): Add tests
+ for String#lstrip and rstrip. The test cases are used from
+ string.c ruby-doc comments. [Fix GH-1174]
+
Sun Dec 27 11:47:46 2015 Kuniaki IGARASHI <igaiga@gmail.com>
- * test/ruby/test_string.rb (test_insert): The test cases are
- written in string.c comments as a reference. [Fix GH-1173]
+ * test/ruby/test_string.rb (test_insert): Add test for
+ String#test_insert. The test cases are written in string.c
+ comments as a reference. [Fix GH-1173]
Sun Dec 27 11:03:33 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>