summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-28 04:18:53 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-28 04:18:53 +0000
commit183b7e36c2ea1846ae4bf060c681b6c10fbe9367 (patch)
treedb141e658db8d5dbb6db3de3c9efd6e50114678e /spec
parent934e3e0e1282757cff518266fb61f9e675383980 (diff)
use Scripting.Dictionary instead of InternetExplorer.Application
* spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb: use Scripting.Dictionary. InternetExplorer.Application is not available on some environments. Thanks to MSP-Greg (Greg L). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65407 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb13
1 files changed, 4 insertions, 9 deletions
diff --git a/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb b/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
index cd2be503f0..2d31aac9eb 100644
--- a/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
+++ b/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
@@ -1,23 +1,18 @@
-require_relative '../fixtures/classes'
platform_is :windows do
- require 'win32ole'
+ require_relative '../fixtures/classes'
describe "WIN32OLE#ole_obj_help" do
before :each do
- @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application')
- end
-
- after :each do
- @ie.Quit
+ @dict = WIN32OLESpecs.new_ole('Scripting.Dictionary')
end
it "raises ArgumentError if argument is given" do
- lambda { @ie.ole_obj_help(1) }.should raise_error ArgumentError
+ lambda { @dict.ole_obj_help(1) }.should raise_error ArgumentError
end
it "returns an instance of WIN32OLE_TYPE" do
- @ie.ole_obj_help.kind_of?(WIN32OLE_TYPE).should be_true
+ @dict.ole_obj_help.kind_of?(WIN32OLE_TYPE).should be_true
end
end
end