aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/win32ole/win32ole_type/typelibs_spec.rb
blob: 3a28c0496c0e7b5b1cb6bdbba09544163b8d3dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
platform_is :windows do
  require 'win32ole'

  describe "WIN32OLE_TYPE.typelibs for Shell Controls" do
    before :each do
      @ole_type = WIN32OLE_TYPE.new("Microsoft Shell Controls And Automation", "Shell")
    end

    after :each do
      @ole_type = nil
    end

    it "raises ArgumentError if any argument is give" do
      lambda { WIN32OLE_TYPE.typelibs(1) }.should raise_error ArgumentError
    end

    it "returns array of type libraries" do
      WIN32OLE_TYPE.typelibs().include?("Microsoft Shell Controls And Automation").should be_true
    end

  end
end