blib/lib/Alien/bison.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 11 | 13 | 84.6 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 6 | 66.6 |
pod | 1 | 1 | 100.0 |
total | 16 | 20 | 80.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Alien::bison; | ||||||
2 | |||||||
3 | 2 | 2 | 457621 | use strict; | |||
2 | 15 | ||||||
2 | 53 | ||||||
4 | 2 | 2 | 9 | use warnings; | |||
2 | 4 | ||||||
2 | 43 | ||||||
5 | 2 | 2 | 43 | use 5.008001; | |||
2 | 7 | ||||||
6 | 2 | 2 | 8 | use base qw( Alien::Base ); | |||
2 | 4 | ||||||
2 | 937 | ||||||
7 | |||||||
8 | # ABSTRACT: Find or build bison, the parser generator | ||||||
9 | our $VERSION = '0.22'; # VERSION | ||||||
10 | |||||||
11 | |||||||
12 | sub alien_helper | ||||||
13 | { | ||||||
14 | return { | ||||||
15 | 0 | 0 | bison => sub { 'bison' }, | ||||
16 | 0 | 0 | 1 | }; | |||
17 | } | ||||||
18 | |||||||
19 | 1; | ||||||
20 | |||||||
21 | __END__ |