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 15     15   90 use strict;
  15         27  
  15         545  
7 15     15   63 use warnings;
  15         26  
  15         738  
8 15     15   227 use 5.010;
  15         47  
9              
10             # One of: fatpack, macos, macos_arm, win, cpan
11             our $distro_format = 'cpan';
12