platform_is :windows do
  require 'win32ole'
  
  # TODO Add specs here
  ruby_version_is "1.9" do
    describe "WIN32OLE_EVENT#unadvise" do
      before :each do
        @ole = WIN32OLE.new('InternetExplorer.Application')
        @event = ''
      end

      after :each do
        @ole = nil
      end

    end
  end
end
