File Coverage

blib/lib/Minilla/Unsupported.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Minilla::Unsupported;
2 1     1   973 use strict;
  1         3  
  1         29  
3 1     1   5 use warnings;
  1         2  
  1         22  
4 1     1   5 use utf8;
  1         2  
  1         5  
5              
6 1     1   20 use Moo;
  1         1  
  1         5  
7              
8             has os => (
9             is => 'ro',
10             isa => sub { ref $_[0] eq 'ARRAY' },
11             default => sub { [] },
12             );
13              
14 1     1   398 no Moo;
  1         2  
  1         8  
15              
16             1;