| 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 | 20 | use strict; | |||
| 3 | 7 | ||||||
| 3 | 127 | ||||||
| 7 | 3 | 3 | 18 | use warnings; | |||
| 3 | 6 | ||||||
| 3 | 71 | ||||||
| 8 | 3 | 3 | 44 | use 5.010; | |||
| 3 | 9 | ||||||
| 9 | |||||||
| 10 | # One of: fatpack, macos, macos_arm, win, cpan | ||||||
| 11 | our $distro_format = 'cpan'; | ||||||
| 12 |