1POE::Loop::Event(3) User Contributed Perl Documentation POE::Loop::Event(3)
2
3
4
5sub skip_tests {
6 return "Event tests require the Event module" if (
7 do { eval "use Event"; $@ }
8 );
9 my $test_name = shift;
10 if ($test_name eq "k_signals_rerun" and $^O eq "MSWin32") {
11 return "This test crashes Perl when run with Tk on $^O";
12 }
13 if ($test_name eq "wheel_readline" and $^O eq "darwin") {
14 return "Event skips two of its own tests for the same reason";
15 } }
16
18 POE::Loop::Event - a bridge that allows POE to be driven by Event.pm
19
21 See POE::Loop.
22
24 POE::Loop::Event implements the interface documented in POE::Loop.
25 Therefore it has no documentation of its own. Please see POE::Loop for
26 more details.
27
29 POE, POE::Loop, Event, POE::Loop::PerlSignals
30
32 POE::Loop::Event is Copyright 1998-2013 Rocco Caputo. All rights
33 reserved. POE::Loop::Event is free software; you may redistribute it
34 and/or modify it under the same terms as Perl itself.
35
36
37
38perl v5.38.0 2023-07-21 POE::Loop::Event(3)