blib/lib/Lingua/Poetry/Haiku/Finder/SentencePart.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 14 | 14 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | n/a | ||
total | 19 | 19 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 1 | 1 | 18 | use 5.012; | |||
1 | 4 | ||||||
2 | 1 | 1 | 6 | use strict; | |||
1 | 2 | ||||||
1 | 21 | ||||||
3 | 1 | 1 | 5 | use warnings; | |||
1 | 2 | ||||||
1 | 55 | ||||||
4 | |||||||
5 | package Lingua::Poetry::Haiku::Finder::SentencePart; | ||||||
6 | |||||||
7 | our $AUTHORITY = 'cpan:TOBYINK'; | ||||||
8 | our $VERSION = '0.002'; | ||||||
9 | |||||||
10 | 1 | 1 | 584 | use Moo::Role; | |||
1 | 9198 | ||||||
1 | 6 | ||||||
11 | 1 | 1 | 343 | use namespace::autoclean; | |||
1 | 2 | ||||||
1 | 6 | ||||||
12 | requires qw( text syllables is_word ); | ||||||
13 | |||||||
14 | 1; |