aboutsummaryrefslogtreecommitdiffstats
path: root/test
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
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')
-rw-r--r--test/lib/envutil.rb2
-rw-r--r--test/logger/test_logdevice.rb2
-rw-r--r--test/mkmf/base.rb6
-rw-r--r--test/optparse/test_autoconf.rb2
-rw-r--r--test/optparse/test_kwargs.rb2
-rw-r--r--test/optparse/test_optparse.rb2
6 files changed, 8 insertions, 8 deletions
diff --git a/test/lib/envutil.rb b/test/lib/envutil.rb
index f2b266484d..45b6eb47fb 100644
--- a/test/lib/envutil.rb
+++ b/test/lib/envutil.rb
@@ -160,7 +160,7 @@ module EnvUtil
def verbose_warning
class << (stderr = "".dup)
- alias write <<
+ alias write concat
end
stderr, $stderr, verbose, $VERBOSE = $stderr, stderr, $VERBOSE, true
yield stderr
diff --git a/test/logger/test_logdevice.rb b/test/logger/test_logdevice.rb
index 14d7bbce6a..7d5bf9ac81 100644
--- a/test/logger/test_logdevice.rb
+++ b/test/logger/test_logdevice.rb
@@ -75,7 +75,7 @@ class TestLogDevice < Test::Unit::TestCase
#
logdev = d(LogExcnRaiser.new)
class << (stderr = '')
- alias write <<
+ alias write concat
end
$stderr, stderr = stderr, $stderr
begin
diff --git a/test/mkmf/base.rb b/test/mkmf/base.rb
index 86bdd29286..3ba3e03387 100644
--- a/test/mkmf/base.rb
+++ b/test/mkmf/base.rb
@@ -49,11 +49,11 @@ module TestMkmf::Base
def filter(&block)
@filter = block
end
- def write(s)
+ def write(*s)
if @out
- @buffer << s
+ @buffer.concat(*s)
elsif @origin
- @origin << s
+ @origin.write(*s)
end
end
end
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