File Coverage

blib/lib/App/Ack/Filter/Default.pm
Criterion Covered Total %
statement 9 13 69.2
branch n/a
condition n/a
subroutine 3 5 60.0
pod 1 2 50.0
total 13 20 65.0


line stmt bran cond sub pod time code
1             package App::Ack::Filter::Default;
2              
3             =head1 NAME
4              
5             App::Ack::Filter::Default
6              
7             =head1 DESCRIPTION
8              
9             The class that implements the filter that ack uses by
10             default if you don't specify any filters on the command line.
11              
12             =cut
13              
14 2     2   22 use strict;
  2         3  
  2         49  
15 2     2   8 use warnings;
  2         3  
  2         42  
16 2     2   7 use parent 'App::Ack::Filter';
  2         3  
  2         8  
17              
18             sub new {
19 0     0 0   my ( $class ) = @_;
20              
21 0           return bless {}, $class;
22             }
23              
24             sub filter {
25 0     0 1   my ( undef, $file ) = @_;
26              
27 0           return -T $file->name;
28             }
29              
30             1;