File Coverage

blib/lib/Math/Polynomial/Generic.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Math::Polynomial::Generic;
2              
3 1     1   452 use strict;
  1         2  
  1         30  
4 1     1   5 use warnings;
  1         2  
  1         29  
5 1     1   5 use Carp qw(carp croak);
  1         1  
  1         102  
6              
7             our $VERSION = '1.019';
8              
9             sub import {
10 1     1   208 croak(__PACKAGE__ . " is no longer available");
11             }
12              
13             1;
14              
15             __END__