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

  describe "WIN32OLE_PARAM#ole_type" do
    before :each do
      ole_type = WIN32OLE_TYPE.new("Microsoft Scripting Runtime", "FileSystemObject")
      m_copyfile = WIN32OLE_METHOD.new(ole_type, "CopyFile")
      @param_overwritefiles = m_copyfile.params[2]
    end

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

    it "returns 'BOOL' for 3rd parameter of FileSystemObject's 'CopyFile' method" do
      @param_overwritefiles.ole_type.should == 'BOOL'
    end

  end

end