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/helpstring_spec.rb

21 lines
575 B
Ruby
Raw Normal View History

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
lambda { @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