blib/lib/Pegex/Crontab.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Pegex::Crontab; | ||||||
2 | our $VERSION = '0.23'; | ||||||
3 | |||||||
4 | 2 | 2 | 72785 | use Pegex::Base; | |||
2 | 7015 | ||||||
2 | 14 | ||||||
5 | extends 'Pegex::Module'; | ||||||
6 | |||||||
7 | 2 | 2 | 9002 | use Pegex::Parser; | |||
2 | 61062 | ||||||
2 | 73 | ||||||
8 | 2 | 2 | 2013 | use Pegex::Crontab::Grammar; | |||
2 | 9 | ||||||
2 | 24 | ||||||
9 | 2 | 2 | 1639 | use Pegex::Crontab::AST; | |||
2 | 9 | ||||||
2 | 235 | ||||||
10 | |||||||
11 | has parser_class => 'Pegex::Parser'; | ||||||
12 | has grammar_class => 'Pegex::Crontab::Grammar'; | ||||||
13 | has receiver_class => 'Pegex::Crontab::AST'; | ||||||
14 | |||||||
15 | 1; |