mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d02a7ac01c
* test/win32ole/test_win32ole_method_event.rb: use System Monitor Control to test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
36 lines
976 B
Ruby
36 lines
976 B
Ruby
begin
|
|
require 'win32ole'
|
|
rescue LoadError
|
|
end
|
|
|
|
require 'test/unit'
|
|
|
|
if defined?(WIN32OLE_METHOD)
|
|
require_relative 'available_ole'
|
|
class TestWIN32OLE_METHOD_EVENT < Test::Unit::TestCase
|
|
unless AvailableOLE.sysmon_available?
|
|
def test_dummy_for_skip_message
|
|
skip 'System Monitor Control is not available'
|
|
end
|
|
else
|
|
def setup
|
|
ole_type = WIN32OLE_TYPE.new('System Monitor Control', 'SystemMonitor')
|
|
@on_dbl_click = WIN32OLE_METHOD.new(ole_type, 'OnDblClick')
|
|
ole_type = WIN32OLE_TYPE.new('Microsoft Shell Controls And Automation', 'Shell')
|
|
@namespace = WIN32OLE_METHOD.new(ole_type, 'namespace')
|
|
end
|
|
|
|
def test_event?
|
|
assert(@on_dbl_click.event?)
|
|
end
|
|
|
|
def test_event_interface
|
|
assert('DISystemMonitorEvents', @on_dbl_click.event_interface)
|
|
end
|
|
|
|
def test_event_interface_is_nil
|
|
assert_equal(nil, @namespace.event_interface)
|
|
end
|
|
end
|
|
end
|
|
end
|