summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_enum.rb16
1 files changed, 1 insertions, 15 deletions
diff --git a/test/ruby/test_enum.rb b/test/ruby/test_enum.rb
index 0cb7e93c0a..8b9a8c317e 100644
--- a/test/ruby/test_enum.rb
+++ b/test/ruby/test_enum.rb
@@ -33,20 +33,6 @@ class TestEnumerable < Test::Unit::TestCase
$VERBOSE = @verbose
end
- def assert_not_warn
- begin
- org_stderr = $stderr
- v = $VERBOSE
- $stderr = StringIO.new(warn = '')
- $VERBOSE = true
- yield
- ensure
- $stderr = org_stderr
- $VERBOSE = v
- end
- assert_equal("", warn)
- end
-
def test_grep
assert_equal([1, 2, 1, 2], @obj.grep(1..2))
a = []
@@ -513,7 +499,7 @@ class TestEnumerable < Test::Unit::TestCase
ss = %w[abc defg h ijk l mno pqr st u vw xy z]
assert_equal([%w[abc defg h], %w[ijk l], %w[mno], %w[pqr st u vw xy z]],
ss.slice_before(/\A...\z/).to_a)
- assert_not_warn{ss.slice_before(/\A...\z/).to_a}
+ assert_warning("") {ss.slice_before(/\A...\z/).to_a}
end
def test_slice_after0