blib/lib/Courriel/Types.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 Courriel::Types; | ||||||
2 | |||||||
3 | 10 | 10 | 52 | use strict; | |||
10 | 16 | ||||||
10 | 354 | ||||||
4 | 10 | 10 | 40 | use warnings; | |||
10 | 13 | ||||||
10 | 280 | ||||||
5 | 10 | 10 | 294 | use namespace::autoclean; | |||
10 | 17 | ||||||
10 | 70 | ||||||
6 | |||||||
7 | 10 | 10 | 5761 | use parent 'MooseX::Types::Combine'; | |||
10 | 2910 | ||||||
10 | 63 | ||||||
8 | |||||||
9 | our $VERSION = '0.44'; | ||||||
10 | |||||||
11 | __PACKAGE__->provide_types_from( | ||||||
12 | qw( | ||||||
13 | MooseX::Types::Common::String | ||||||
14 | MooseX::Types::Moose | ||||||
15 | Courriel::Types::Internal | ||||||
16 | ) | ||||||
17 | ); | ||||||
18 | |||||||
19 | 1; |