File Coverage

blib/lib/Event/RPC/Loop.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 11 12 91.6


line stmt bran cond sub pod time code
1             #-----------------------------------------------------------------------
2             # Copyright (C) 2005-2015 by Jörn Reder .
3             # All Rights Reserved. See file COPYRIGHT for details.
4             #
5             # This module is part of Event::RPC, which is free software; you can
6             # redistribute it and/or modify it under the same terms as Perl itself.
7             #-----------------------------------------------------------------------
8              
9             package Event::RPC::Loop;
10              
11 20     20   161 use strict;
  20         55  
  20         539  
12 20     20   106 use utf8;
  20         41  
  20         137  
13              
14             sub new {
15 20     20 0 70 my $class = shift;
16 20         95 return bless {}, $class;
17             }
18              
19             1;
20              
21             __END__