diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-23 14:05:07 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-23 14:05:07 +0000 |
commit | 30d23ec9035ae62d11a7ffe632297206b0d74da5 (patch) | |
tree | 67ba57fca1504e79f0f56765985a589a0c28d1b5 /test/optparse/test_optparse.rb | |
parent | 8bbdbf9e75ecdfbc8bfaac4c5c2637332c0aa0bf (diff) | |
download | ruby-30d23ec9035ae62d11a7ffe632297206b0d74da5.tar.gz |
multiple arguments to write
Make write methods of IO-like objects accept multiple arguments,
as well as IO#write.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/optparse/test_optparse.rb')
-rw-r--r-- | test/optparse/test_optparse.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/optparse/test_optparse.rb b/test/optparse/test_optparse.rb index a2540db241..e4aeb07aac 100644 --- a/test/optparse/test_optparse.rb +++ b/test/optparse/test_optparse.rb @@ -9,7 +9,7 @@ class TestOptionParser < Test::Unit::TestCase end class DummyOutput < String - alias write << + alias write concat end def assert_no_error(*args) $stderr, stderr = DummyOutput.new, $stderr |