File Coverage

File:t/lib/Foo.pm
Coverage:87.5%

linestmtbrancondsubpodtimecode
1package Foo;
2
3
4
4
4
21
17
129
use strict;
4
4
4
4
27
6
191
use warnings;
5
4
4
4
505
8
571
use Util::H2O::More qw/baptise/;
6
7sub new {
8
9
0
18
    my $pkg  = shift;
9
9
24
    my %opts = @_;
10
9
28
    my $self = baptise -recurse, \%opts, $pkg, qw/bar/;
11
9
27
    return $self;
12}
13
14sub boop {
15
2
0
6
    return 'boop';
16}
17
18sub beep {
19
2
0
10
    return 'beep';
20}
21
221;