File Coverage

blib/lib/Acme/BayaC.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition 0 2 0.0
subroutine 3 4 75.0
pod 1 1 100.0
total 13 19 68.4


line stmt bran cond sub pod time code
1             package Acme::BayaC;
2 2     2   139844 use strict;
  2         12  
  2         56  
3 2     2   11 use warnings;
  2         2  
  2         51  
4 2     2   10 use Carp qw/croak/;
  2         4  
  2         184  
5              
6             our $VERSION = '0.04';
7              
8             sub new {
9 0     0 1   my $class = shift;
10 0   0       my $args = shift || +{};
11              
12 0           bless $args, $class;
13             }
14              
15             1;
16              
17             __END__