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:
parent
bab146b689
commit
3e13081214
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue