diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-02-08 22:31:55 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-02-08 22:31:55 +0000 |
| commit | 2bd2ea829f360bdae74281230aa3377b0c81fa14 (patch) | |
| tree | 2f06db90928cbfeee5d7403416282096ed272f0b | |
| parent | 42c6255260c5391abb9bc04dc8f1b9aef598eff8 (diff) | |
merge revision(s) 34499:
* test/pathname/test_pathname.rb: not read but binread.
patched by Benoit Daloze, [ruby-core:42440] [Bug #5984]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34500 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/pathname/test_pathname.rb | 2 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Thu Feb 9 07:28:43 2012 NARUSE, Yui <naruse@ruby-lang.org> + + * test/pathname/test_pathname.rb: not read but binread. + patched by Benoit Daloze, [ruby-core:42440] [Bug #5984] + Wed Feb 8 22:29:59 2012 Nobuyoshi Nakada <nobu@ruby-lang.org> * string.c (rb_str_modify_expand): fix memory leak. diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index ac9b415022..8a8c0d9844 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -714,7 +714,7 @@ class TestPathname < Test::Unit::TestCase def test_binread with_tmpchdir('rubytest-pathname') {|dir| open("a", "w") {|f| f.write "abc" } - assert_equal("abc", Pathname("a").read) + assert_equal("abc", Pathname("a").binread) } end @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.3" -#define RUBY_PATCHLEVEL 69 +#define RUBY_PATCHLEVEL 70 #define RUBY_RELEASE_DATE "2012-02-09" #define RUBY_RELEASE_YEAR 2012 |
