lib/Perl6/Bible.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 5 | 9 | 55.5 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 4 | 50.0 |
pod | 0 | 2 | 0.0 |
total | 7 | 15 | 46.6 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Perl6::Bible; | ||||||
2 | 1 | 1 | 72415 | use 5.000; | |||
1 | 4 | ||||||
3 | 1 | 1 | 5 | use File::Spec; | |||
1 | 2 | ||||||
1 | 91 | ||||||
4 | |||||||
5 | our $VERSION = '0.38'; | ||||||
6 | |||||||
7 | sub new { | ||||||
8 | 0 | 0 | 0 | my $class = shift; | |||
9 | 0 | bless({@_}, $class); | |||||
10 | } | ||||||
11 | |||||||
12 | sub process { | ||||||
13 | 0 | 0 | 0 | my $self = shift; | |||
14 | 0 | print <<_; | |||||
15 | |||||||
16 | This was the Perl 6 Canon up to December 2007. | ||||||
17 | Please install Perl6::Doc to have even more Perl 6 Documentation. | ||||||
18 | _ | ||||||
19 | } | ||||||
20 | |||||||
21 | __DATA__ |