summaryrefslogtreecommitdiff
path: root/spec/ruby/library
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-28 04:38:49 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-28 04:38:49 +0000
commit7f0aefec6a2460e3ed0a8ace4a9f4c09dc145d60 (patch)
tree8d07e894d1b74ff56be0c26f2bcb9b3ccc460646 /spec/ruby/library
parente9a1c8241a3c20eb3a8ca3fc733e442c6034a572 (diff)
use Scripting.Dictionary instead of InternetExplorer.Application.
* spec/ruby/library/win32ole/win32ole/ole_put_methods_spec.rb: use Scripting.Dictionary. InternetExplorer.Application is not available on some enviroments. Thanks to MSP-Greg (Greg L). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/library')
-rw-r--r--spec/ruby/library/win32ole/win32ole/ole_put_methods_spec.rb18
1 files changed, 6 insertions, 12 deletions
diff --git a/spec/ruby/library/win32ole/win32ole/ole_put_methods_spec.rb b/spec/ruby/library/win32ole/win32ole/ole_put_methods_spec.rb
index a58bbc8afe..45af41c6c2 100644
--- a/spec/ruby/library/win32ole/win32ole/ole_put_methods_spec.rb
+++ b/spec/ruby/library/win32ole/win32ole/ole_put_methods_spec.rb
@@ -1,27 +1,21 @@
-require_relative '../fixtures/classes'
-
platform_is :windows do
- require 'win32ole'
+ require_relative '../fixtures/classes'
describe "WIN32OLE#ole_put_methods" 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_put_methods(1) }.should raise_error ArgumentError
+ lambda { @dict.ole_put_methods(1) }.should raise_error ArgumentError
end
it "returns an array of WIN32OLE_METHODs" do
- @ie.ole_put_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
+ @dict.ole_put_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
end
- it "contains a 'Height' method for Internet Explorer" do
- @ie.ole_put_methods.map { |m| m.name }.include?('Height').should be_true
+ it "contains a 'Key' method for Scripting Dictionary" do
+ @dict.ole_put_methods.map { |m| m.name }.include?('Key').should be_true
end
end
end