File Coverage

blib/lib/POE/Queue.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::Queue;
2              
3 1     1   19676 use strict;
  1         3  
  1         40  
4              
5 1     1   3 use vars qw($VERSION);
  1         2  
  1         55  
6             $VERSION = '1.367'; # NOTE - Should be #.### (three decimal places)
7              
8 1     1   6 use Carp qw(croak);
  1         1  
  1         103  
9              
10             sub new {
11 1     1 1 13 my $type = shift;
12 1         213 croak "$type is a virtual base class and not meant to be used directly";
13             }
14              
15             1;
16              
17             __END__