File Coverage

blib/lib/POE/Driver.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package POE::Driver;
2              
3 1     1   17878 use strict;
  1         2  
  1         44  
4              
5 1     1   3 use vars qw($VERSION);
  1         2  
  1         58  
6             $VERSION = '1.367'; # NOTE - Should be #.### (three decimal places)
7              
8 1     1   4 use Carp qw(croak);
  1         2  
  1         107  
9              
10             #------------------------------------------------------------------------------
11              
12             sub new {
13 1     1 1 17 my $type = shift;
14 1         192 croak "$type is not meant to be used directly";
15             }
16              
17             #------------------------------------------------------------------------------
18             1;
19              
20             __END__