1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/win32ole/win32ole_method/helpcontext_spec.rb
suke 3a94b881b9 should not use Microsoft Internet Controller
* spec/ruby/library/win32ole/win32ole_method/helpcontext_spec.rb:
  Use FileSystemObject. Microsoft Internet Explorer is not available
  in some environment.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66260 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-12-06 21:56:55 +00:00

26 lines
871 B
Ruby

platform_is :windows do
require 'win32ole'
describe "WIN32OLE_METHOD#helpcontext" do
before :each do
ole_type = WIN32OLE_TYPE.new("Microsoft Scripting Runtime", "FileSystemObject")
@get_file_version = WIN32OLE_METHOD.new(ole_type, "GetFileVersion")
ole_type = WIN32OLE_TYPE.new("Microsoft Scripting Runtime", "File")
@m_file_name = WIN32OLE_METHOD.new(ole_type, "name")
end
it "raises ArgumentError if argument is given" do
lambda { @get_file_version.helpcontext(1) }.should raise_error ArgumentError
end
it "returns expected value for FileSystemObject's 'GetFileVersion' method" do
@get_file_version.helpcontext.should == 0
end
it "returns expected value for Scripting Runtime's 'name' method" do
@m_file_name.helpcontext.should == 2181996 # value indicated in MRI's test
end
end
end