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   85476 use strict;
  10         22  
  10         224  
4 10     10   44 use warnings;
  10         20  
  10         206  
5              
6 10     10   42 use base 'Bootylicious::FileIteratorLoader';
  10         58  
  10         2361  
7              
8             __PACKAGE__->attr(filter => sub {qr/^[^\.]+\.[^\.]+$/});
9             __PACKAGE__->attr(element_class => 'Bootylicious::Article');
10              
11             1;