mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
26 lines
867 B
Ruby
26 lines
867 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
|
|
-> { @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
|