File Coverage

blib/lib/Cikl/Smrt/Fetcher.pm
Criterion Covered Total %
statement 9 14 64.2
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 21 57.1


line stmt bran cond sub pod time code
1             package Cikl::Smrt::Fetcher;
2              
3 1     1   7 use strict;
  1         2  
  1         46  
4 1     1   8 use warnings;
  1         1  
  1         34  
5 1     1   6 use Mouse;
  1         3  
  1         5  
6              
7             has 'feedurl' => (
8             is => 'ro',
9             isa => 'URI',
10             required => 1
11             );
12              
13             sub schemes {
14 0     0 0   my $class = shift;
15 0           die("$class has not implemented the schemes() method!");
16             }
17              
18             sub fetch {
19 0     0 0   my $class = shift;
20 0           my $feedparser_config = shift;
21 0           die("$class has not implemented the schemes() method!");
22             }
23              
24             1;
25              
26              
27