summaryrefslogtreecommitdiff
path: root/test/ruby/test_dir.rb
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-23 12:36:24 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-23 12:36:24 +0000
commitec6c4abdba820541180b7d297dc40ee011a2dc8a (patch)
treebe7a891bbbca77cbb00eb2f8010e4cd619783776 /test/ruby/test_dir.rb
parented9a65c4f609afcabf0a2d7254453592ba0cf243 (diff)
* test/ruby/test_dir.rb: suppress warning during test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_dir.rb')
-rw-r--r--test/ruby/test_dir.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ruby/test_dir.rb b/test/ruby/test_dir.rb
index 36d7407d92..0ea28f55d8 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