summaryrefslogtreecommitdiff
path: root/spec/ruby/library/win32ole/win32ole/ole_obj_help_spec.rb
blob: afcf16a0518eb166774c5eb7a110d38445ed1917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative "../../../spec_helper"

platform_is :windows do
  require_relative '../fixtures/classes'

  describe "WIN32OLE#ole_obj_help" do
    before :each do
      @dict = WIN32OLESpecs.new_ole('Scripting.Dictionary')
    end

    it "raises ArgumentError if argument is given" do
      -> { @dict.ole_obj_help(1) }.should raise_error ArgumentError
    end

    it "returns an instance of WIN32OLE_TYPE" do
      @dict.ole_obj_help.kind_of?(WIN32OLE_TYPE).should be_true
    end
  end
end