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

* 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
This commit is contained in:
mame 2008-07-23 12:36:24 +00:00
parent ed9a65c4f6
commit ec6c4abdba
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 23 21:35:53 2008 Yusuke Endoh <mame@tsg.ne.jp>
* test/ruby/test_dir.rb: suppress warning during test.
Wed Jul 23 18:27:46 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/tk/{stubs,tcltklib}.c, ext/tk/tkutil/tkutil.c: fix warnings

View file

@ -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