require File.expand_path('../../fixtures/classes', __FILE__) platform_is :windows do require 'win32ole' describe "WIN32OLE#invoke" do before :each do @ie = WIN32OLESpecs.new_ole('InternetExplorer.Application') end after :each do @ie.Quit end it "get name by invoking 'Name' OLE method" do @ie.invoke('Name').should =~ /explorer/i end end end