mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
2f1c9e2ac1
commit
3a94b881b9
1 changed files with 5 additions and 5 deletions
|
@ -3,18 +3,18 @@ platform_is :windows do
|
|||
|
||||
describe "WIN32OLE_METHOD#helpcontext" do
|
||||
before :each do
|
||||
ole_type = WIN32OLE_TYPE.new("Microsoft Internet Controls", "WebBrowser")
|
||||
@navigate_method = WIN32OLE_METHOD.new(ole_type, "NavigateComplete")
|
||||
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 { @navigate_method.helpcontext(1) }.should raise_error ArgumentError
|
||||
lambda { @get_file_version.helpcontext(1) }.should raise_error ArgumentError
|
||||
end
|
||||
|
||||
it "returns expected value for browser's 'NavigateComplete' method" do
|
||||
@navigate_method.helpcontext.should == 0
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue