File Coverage

blib/lib/List/Categorize/Multi.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package List::Categorize::Multi;
2 2     2   161005 use Carp qw/carp/;
  2         13  
  2         118  
3 2     2   1002 use List::Categorize 0.04 qw/categorize/;
  2         1437  
  2         136  
4 2     2   19 use Exporter qw/import/;
  2         5  
  2         187  
5              
6             our $VERSION = '0.03';
7             our @EXPORT_OK = qw/categorize/; # re-export the subroutine from List::Categorize
8              
9             carp "List::Categorize::Multi is deprecated; use List::Categorize 0.04 instead";
10              
11             1;
12              
13             __END__