File Coverage

blib/lib/Acme/Cow/Frogs.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition 1 3 33.3
subroutine 4 4 100.0
pod 2 2 100.0
total 20 22 90.9


line stmt bran cond sub pod time code
1             package Acme::Cow::Frogs;
2              
3 1     1   5754 use strict;
  1         9  
  1         32  
4              
5 1     1   427 use Acme::Cow;
  1         2  
  1         124  
6              
7             @Acme::Cow::Frogs::ISA = qw(Acme::Cow);
8              
9             my $frogs = <<'EOC';
10             {$balloon}
11             {$tr}
12             {$tr}
13             oO)-. .-(Oo
14             /__ _\ /_ __\
15             \ \( | ()~() | )/ /
16             \__|\ | (-___-) | /|__/
17             ' '--' ==`-'== '--' '
18             EOC
19              
20             sub new
21             {
22 1     1 1 148 my $proto = shift;
23 1   33     9 my $class = ref $proto || $proto;
24 1         25 my $self = $class->SUPER::new();
25 1         7 $self->over(46);
26 1         3 return bless $self, $class;
27             }
28              
29             sub as_string
30             {
31 2     2 1 6 my $self = shift;
32 2         7 return $self->SUPER::as_string($frogs);
33             }
34              
35             1;