aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/win32ole/win32ole/shared/setproperty.rb
blob: 9703e402bff4a65b63e64a580cbecbc23e29c085 (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
require File.expand_path('../../../fixtures/classes', __FILE__)

platform_is :windows do
  require 'win32ole'

  describe :win32ole_setproperty, shared: true do
    before :each do
      @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application')
    end

    after :each do
      @ie.Quit
    end

    it "raises ArgumentError if no argument is given" do
      lambda { @ie.send(@method) }.should raise_error ArgumentError
    end

    it "sets height to 500 and returns nil" do
      height = 500
      result = @ie.send(@method, 'Height', height)
      result.should == nil
    end
  end
end