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

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