File Coverage

blib/lib/Alien/xz.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 1 1 100.0
total 13 17 76.4


line stmt bran cond sub pod time code
1             package Alien::xz;
2              
3 4     4   694719 use strict;
  4         20  
  4         94  
4 4     4   14 use warnings;
  4         8  
  4         108  
5 4     4   15 use base qw( Alien::Base );
  4         6  
  4         1345  
6              
7             # ABSTRACT: Find or build xz
8             our $VERSION = '0.07'; # VERSION
9              
10              
11              
12              
13             sub alien_helper
14             {
15             return {
16 0     0     xz => sub { 'xz' },
17 0     0 1   };
18             }
19              
20              
21              
22              
23             1;
24              
25             __END__