1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Set $VERBOSE=false in case of ruby -w.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35294 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-04-11 01:15:56 +00:00
parent bab146b689
commit 3e13081214

View file

@ -653,11 +653,13 @@ class TestPack < Test::Unit::TestCase
end
def test_pack_garbage
verbose = $VERBOSE
$VERBOSE = false
assert_silent do
assert_equal "\000", [0].pack("*U")
end
verbose = $VERBOSE
$VERBOSE = true
_, err = capture_io do
@ -670,11 +672,13 @@ class TestPack < Test::Unit::TestCase
end
def test_unpack_garbage
verbose = $VERBOSE
$VERBOSE = false
assert_silent do
assert_equal [0], "\000".unpack("*U")
end
verbose = $VERBOSE
$VERBOSE = true
_, err = capture_io do