File Coverage

blib/lib/Alien/bison.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::bison;
2              
3 2     2   525040 use strict;
  2         10  
  2         59  
4 2     2   11 use warnings;
  2         5  
  2         55  
5 2     2   9 use base qw( Alien::Base );
  2         4  
  2         1139  
6              
7             # ABSTRACT: Find or build bison, the parser generator
8             our $VERSION = '0.21'; # VERSION
9              
10              
11             sub alien_helper
12             {
13             return {
14 0     0     bison => sub { 'bison' },
15 0     0 1   };
16             }
17              
18             1;
19              
20             __END__