diff options
author | Nobuyoshi Nakada <[email protected]> | 2024-12-20 01:09:15 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-12-22 22:10:02 +0900 |
commit | 99d5e6ab7a8a6cf42a75e5b29c396f670259b9c1 (patch) | |
tree | 846eef12bb35422bed38dd8ad289b21ccb225f6e /spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb | |
parent | cd8ad9634d9ab93f813d23b92384e04ecb8cc5f9 (diff) |
Suppress WIN32OLE deprecation warnings for the time being
Diffstat (limited to 'spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb')
-rw-r--r-- | spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb b/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb index b2f24ba151..e4f7826867 100644 --- a/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb +++ b/spec/ruby/library/win32ole/win32ole_method/helpstring_spec.rb @@ -1,5 +1,7 @@ require_relative "../../../spec_helper" platform_is :windows do + verbose, $VERBOSE = $VERBOSE, nil + require 'win32ole' describe "WIN32OLE_METHOD#helpstring" do @@ -18,4 +20,6 @@ platform_is :windows do end +ensure + $VERBOSE = verbose end |