File Coverage

blib/lib/DDG/Test/Longtail.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             package DDG::Test::Longtail;
2             our $AUTHORITY = 'cpan:DDG';
3             # ABSTRACT: Adds keywords to easily test Longtail plugins.
4             $DDG::Test::Longtail::VERSION = '1016';
5 1     1   16145 use strict;
  1         2  
  1         22  
6 1     1   3 use warnings;
  1         1  
  1         18  
7 1     1   3 use Carp;
  1         1  
  1         37  
8 1     1   3 use Test::More;
  1         0  
  1         5  
9 1     1   500 use DDG::Test::Block;
  1         2  
  1         3  
10 1     1   315 use DDG::Longtail;
  1         3  
  1         7  
11 1     1   540 use Package::Stash;
  1         2  
  1         82  
12              
13              
14             sub import {
15 1     1   6 my ( $class, %params ) = @_;
16 1         3 my $target = caller;
17 1         33 my $stash = Package::Stash->new($target);
18             }
19              
20             1;
21              
22             __END__