File Coverage

lib/Brownie/Helpers.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Brownie::Helpers;
2              
3 19     19   106 use warnings;
  19         40  
  19         553  
4 19     19   22423 use utf8;
  19         205  
  19         122  
5 19     19   615 use Carp ();
  19         38  
  19         1142  
6              
7 3     3 0 8194 sub not_implemented { Carp::croak('Not implemented') }
8              
9             1;