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   15475 use strict;
  1         1  
  1         35  
4              
5 1     1   4 use vars qw($VERSION);
  1         1  
  1         50  
6             $VERSION = '1.365'; # NOTE - Should be #.### (three decimal places)
7              
8 1     1   3 use Carp qw(croak);
  1         1  
  1         125  
9              
10             #------------------------------------------------------------------------------
11              
12             sub new {
13 1     1 1 9 my $type = shift;
14 1         152 croak "$type is not meant to be used directly";
15             }
16              
17             #------------------------------------------------------------------------------
18             1;
19              
20             __END__