File Coverage

blib/lib/Bootylicious/ArticleIteratorLoader.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 Bootylicious::ArticleIteratorLoader;
2              
3 10     10   103243 use strict;
  10         12  
  10         232  
4 10     10   31 use warnings;
  10         14  
  10         226  
5              
6 10     10   35 use base 'Bootylicious::FileIteratorLoader';
  10         10  
  10         2747  
7              
8             __PACKAGE__->attr(filter => sub {qr/^[^\.]+\.[^\.]+$/});
9             __PACKAGE__->attr(element_class => 'Bootylicious::Article');
10              
11             1;