mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
571 B
Ruby
20 lines
571 B
Ruby
platform_is :windows do
|
|
require 'win32ole'
|
|
|
|
describe "WIN32OLE_METHOD#helpstring" do
|
|
before :each do
|
|
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
|
|
-> { @m_file_name.helpstring(1) }.should raise_error ArgumentError
|
|
end
|
|
|
|
it "returns expected value for Scripting Runtime's 'File' method" do
|
|
@m_file_name.helpstring.should == "Get name of file" # value indicated in MRI's test
|
|
end
|
|
|
|
end
|
|
|
|
end
|