From 5fc8102f02ecdb65d330223329277055b7ad863b Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 23 Jul 2008 12:36:24 +0000 Subject: * test/ruby/test_dir.rb: suppress warning during test. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_dir.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_dir.rb b/test/ruby/test_dir.rb index 36d7407d9..0ea28f55d 100644 --- a/test/ruby/test_dir.rb +++ b/test/ruby/test_dir.rb @@ -7,6 +7,8 @@ require 'pathname' class TestDir < Test::Unit::TestCase def setup + @verbose = $VERBOSE + $VERBOSE = nil @root = Pathname.new(Dir.mktmpdir('__test_dir__')).realpath.to_s @nodir = File.join(@root, "dummy") for i in ?a..?z @@ -19,6 +21,7 @@ class TestDir < Test::Unit::TestCase end def teardown + $VERBOSE = @verbose FileUtils.remove_entry_secure @root if File.directory?(@root) end -- cgit