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   739535 use strict;
  4         14  
  4         123  
4 4     4   24 use warnings;
  4         10  
  4         129  
5 4     4   22 use base qw( Alien::Base );
  4         9  
  4         1674  
6              
7             # ABSTRACT: Find or build xz
8             our $VERSION = '0.06'; # 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__