summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-28 13:25:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-28 13:25:58 +0000
commit53d06bb081ad2f180eb277f3e1dd62889ab61a31 (patch)
treec279683aa95fd9439606c7f2df4d12b6361110d8 /test
parent283c36e761b55a6f393b088261b7ceee8c83d6e8 (diff)
* test/iconv/utils.rb: suppress warning message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/iconv/utils.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/iconv/utils.rb b/test/iconv/utils.rb
index bc75deb173..5f72dd3aea 100644
--- a/test/iconv/utils.rb
+++ b/test/iconv/utils.rb
@@ -1,8 +1,11 @@
begin
+ verbose, $VERBOSE = $VERBOSE, nil
require 'iconv'
rescue LoadError
else
require 'test/unit'
+ensure
+ $VERBOSE = verbose
end
class TestIconv < ::Test::Unit::TestCase