2017-05-07 08:04:49 -04:00
|
|
|
platform_is :windows do
|
2018-12-07 07:12:45 -05:00
|
|
|
require_relative '../fixtures/classes'
|
|
|
|
guard -> { WIN32OLESpecs::SYSTEM_MONITOR_CONTROL_AVAILABLE } do
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-12-07 07:12:45 -05:00
|
|
|
describe "WIN32OLE_METHOD#event?" do
|
|
|
|
before :each do
|
|
|
|
ole_type = WIN32OLE_TYPE.new("System Monitor Control", "SystemMonitor")
|
|
|
|
@on_dbl_click_method = WIN32OLE_METHOD.new(ole_type, "OnDblClick")
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-12-07 07:12:45 -05:00
|
|
|
it "raises ArgumentError if argument is given" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { @on_dbl_click_method.event?(1) }.should raise_error ArgumentError
|
2018-12-07 07:12:45 -05:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-12-07 07:12:45 -05:00
|
|
|
it "returns true for System Monitor Control's 'OnDblClick' method" do
|
|
|
|
@on_dbl_click_method.event?.should be_true
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-12-07 07:12:45 -05:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|