File Coverage

blib/lib/Duadua/Parser/Bot/Feedbin.pm
Criterion Covered Total %
statement 12 12 100.0
branch 2 2 100.0
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Duadua::Parser::Bot::Feedbin;
2 11     11   72 use strict;
  11         23  
  11         394  
3 11     11   48 use warnings;
  11         28  
  11         576  
4 11     11   73 use Duadua::Util qw//;
  11         21  
  11         982  
5              
6             sub try {
7 78     78 1 219 my ($class, $d) = @_;
8              
9 78 100       206 if ( $d->_contain('Feedbin feed-id') ) {
10             return {
11 1         7 name => 'Feedbin',
12             is_bot => 1,
13             };
14             }
15             }
16              
17             1;
18              
19             __END__