File Coverage

blib/lib/DDG/Longtail.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 17 17 100.0


line stmt bran cond sub pod time code
1             package DDG::Longtail;
2             our $AUTHORITY = 'cpan:DDG';
3             # ABSTRACT: Longtail package for easy keywords
4             $DDG::Longtail::VERSION = '1018';
5 2     2   475 use strict;
  2         5  
  2         59  
6 2     2   11 use warnings;
  2         4  
  2         53  
7 2     2   353 use DDG::Meta;
  2         8  
  2         174  
8              
9             sub import {
10 5     5   1527 my ( $class ) = @_;
11 5         15 my $target = caller;
12              
13 5         35 DDG::Meta->apply_base_to_package($target);
14 5         6234 DDG::Meta->apply_longtail_keywords($target);
15             }
16              
17              
18             1;
19              
20             __END__