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

test_win32api.rb: suppress a warning

* test/test_win32api.rb: suppress a warning, which we know already
  well.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-09-23 12:40:46 +00:00
parent ae0e98ce1d
commit 85e5424a46

View file

@ -1,8 +1,11 @@
# frozen_string_literal: false
require "test/unit"
begin
$VERBOSE, verbose = nil, $VERBOSE
require "Win32API"
rescue LoadError
ensure
$VERBOSE = verbose
end
class TestWin32API < Test::Unit::TestCase