summaryrefslogtreecommitdiff
path: root/spec/ruby/library/win32ole/win32ole/_getproperty_spec.rb
blob: 940eebfb91a99a3f572173280007d578e716eb63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
platform_is :windows do
  require_relative '../fixtures/classes'

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

    it "gets value" do
      @dict.add('key', 'value')
      @dict._getproperty(0, ['key'], [WIN32OLE::VARIANT::VT_BSTR]).should == 'value'
    end
  end
end