summaryrefslogtreecommitdiff
path: root/spec/ruby/library/win32ole/win32ole
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-28 01:03:49 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-28 01:03:49 +0000
commit5477d297ecebb9f45fd14a9727a88cd26d817b9d (patch)
treefce06901001497f55675a3f8b8336c6b9f7c1a3f /spec/ruby/library/win32ole/win32ole
parent33a8b277dc6dcc9db72e93d6a3d7735c7f17441e (diff)
use Scripting.Dictionary instead of InternetExplorer.Application
* spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb: use Scripting.Dictionary. InternetExplorer.Application is not available on some environment. Thanks to MSP-Greg (Greg L). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/library/win32ole/win32ole')
-rw-r--r--spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb14
1 files changed, 5 insertions, 9 deletions
diff --git a/spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb b/spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb
index 8a510519f2..5779e40241 100644
--- a/spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb
+++ b/spec/ruby/library/win32ole/win32ole/ole_func_methods_spec.rb
@@ -5,23 +5,19 @@ platform_is :windows do
describe "WIN32OLE#ole_func_methods" do
before :each do
- @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application')
- end
-
- after :each do
- @ie.Quit if @ie
+ @dict = WIN32OLESpecs.new_ole('Scripting.Dictionary')
end
it "raises ArgumentError if argument is given" do
- lambda { @ie.ole_func_methods(1) }.should raise_error ArgumentError
+ lambda { @dict.ole_func_methods(1) }.should raise_error ArgumentError
end
it "returns an array of WIN32OLE_METHODs" do
- @ie.ole_func_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
+ @dict.ole_func_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
end
- it "contains a 'AddRef' method for Internet Explorer" do
- @ie.ole_func_methods.map { |m| m.name }.include?('AddRef').should be_true
+ it "contains a 'AddRef' method for Scripting Dictionary" do
+ @dict.ole_func_methods.map { |m| m.name }.include?('AddRef').should be_true
end
end
end