use Scripting.Dictionary instead of InternetExplorer.Application.

* spec/ruby/library/win32ole/win32ole/ole_methods_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@65408 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
suke 2018-10-28 04:25:55 +00:00
parent 183b7e36c2
commit e9a1c8241a

View File

@ -1,27 +1,21 @@
require_relative '../fixtures/classes'
platform_is :windows do
require 'win32ole'
require_relative '../fixtures/classes'
describe "WIN32OLE#ole_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_methods(1) }.should raise_error ArgumentError
lambda { @dict.ole_methods(1) }.should raise_error ArgumentError
end
it "returns an array of WIN32OLE_METHODs" do
@ie.ole_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
@dict.ole_methods.all? { |m| m.kind_of? WIN32OLE_METHOD }.should be_true
end
it "contains a 'AddRef' method for Internet Explorer" do
@ie.ole_methods.map { |m| m.name }.include?('AddRef').should be_true
@dict.ole_methods.map { |m| m.name }.include?('AddRef').should be_true
end
end
end