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

  describe :win32ole_method_name, shared: true do
    before :each do
      ole_type = WIN32OLE::Type.new("Microsoft Scripting Runtime", "File")
      @m_file_name = WIN32OLE::Method.new(ole_type, "name")
    end

    it "raises ArgumentError if argument is given" do
      -> { @m_file_name.send(@method, 1) }.should raise_error ArgumentError
    end

    it "returns expected value for Scripting Runtime's 'name' method" do
      @m_file_name.send(@method).should == 'Name' # note the capitalization
    end

  end

end