File Coverage

blib/lib/App/Rakubrew/Config.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package App::Rakubrew::Config;
2             require Exporter;
3             our @ISA = qw(Exporter);
4             our @EXPORT = qw( $distro_format );
5              
6 3     3   18 use strict;
  3         6  
  3         109  
7 3     3   12 use warnings;
  3         5  
  3         58  
8 3     3   36 use 5.010;
  3         8  
9              
10             # One of: fatpack, macos, win, cpan
11             our $distro_format = 'cpan';
12