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

NAME

18       POE::Loop::Event - a bridge that allows POE to be driven by Event.pm
19

SYNOPSIS

21       See POE::Loop.
22

DESCRIPTION

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

SEE ALSO

29       POE, POE::Loop, Event, POE::Loop::PerlSignals
30

AUTHORS & LICENSING

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.30.0                      2019-07-26               POE::Loop::Event(3)
Impressum