aboutsummaryrefslogtreecommitdiffstats
path: root/test/optparse
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-23 14:05:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-23 14:05:07 +0000
commit50ac6d6f32fd47f52c0b307a665c37da13643a02 (patch)
tree67ba57fca1504e79f0f56765985a589a0c28d1b5 /test/optparse
parent239ab5f9d2ea06138acb3e4eaec961e36f1f2c38 (diff)
downloadruby-50ac6d6f32fd47f52c0b307a665c37da13643a02.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')
-rw-r--r--test/optparse/test_autoconf.rb2
-rw-r--r--test/optparse/test_kwargs.rb2
-rw-r--r--test/optparse/test_optparse.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/optparse/test_autoconf.rb b/test/optparse/test_autoconf.rb
index 4b3616f816..3be4a4c598 100644
--- a/test/optparse/test_autoconf.rb
+++ b/test/optparse/test_autoconf.rb
@@ -14,7 +14,7 @@ class TestOptionParser::AutoConf < Test::Unit::TestCase
end
class DummyOutput < String
- alias write <<
+ alias write concat
end
def no_error(*args)
$stderr, stderr = DummyOutput.new, $stderr
diff --git a/test/optparse/test_kwargs.rb b/test/optparse/test_kwargs.rb
index 68fe207a2c..78d7e2ee9c 100644
--- a/test/optparse/test_kwargs.rb
+++ b/test/optparse/test_kwargs.rb
@@ -14,7 +14,7 @@ class TestOptionParser::KwArg < Test::Unit::TestCase
end
class DummyOutput < String
- alias write <<
+ alias write concat
end
def assert_no_error(*args)
$stderr, stderr = DummyOutput.new, $stderr
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