File Coverage

blib/lib/POE/Pipe/OneWay.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 23 24 95.8


line stmt bran cond sub pod time code
1             # Deprecation notice: Read POE::Pipe's documentation.
2              
3             package POE::Pipe::OneWay;
4              
5 205     205   244490 use warnings;
  205         351  
  205         11263  
6 205     205   870 use strict;
  205         385  
  205         5314  
7              
8 205     205   751 use base qw( POE::Pipe );
  205         248  
  205         80897  
9              
10 205     205   1292 use vars qw($VERSION);
  205         307  
  205         9202  
11             $VERSION = '1.370'; # NOTE - Should be #.### (three decimal places)
12              
13 205     205   1012 use IO::Pipely qw(pipely);
  205         327  
  205         16335  
14              
15             sub new {
16 1550     1550 0 303682 my ($class, $conduit_type) = @_;
17 1550         11883 return pipely(
18             debug => 0,
19             type => $conduit_type,
20             );
21             }
22              
23             1;
24              
25             __END__