summaryrefslogtreecommitdiff
path: root/spec/ruby/library/win32ole/win32ole_method/helpcontext_spec.rb
blob: 21b3ae8bde4cf674098a6db7634262af8a359474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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