File Coverage

blib/lib/App/GHPT/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 App::GHPT::Types;
2              
3 1     1   9 use App::GHPT::Wrapper::Ourperl;
  1         4  
  1         6  
4              
5             our $VERSION = '1.000012';
6              
7 1     1   5912 use parent 'MooseX::Types::Combine';
  1         3  
  1         8  
8              
9 1     1   2707 use MooseX::Types::Common::Numeric ();
  1         125102  
  1         51  
10 1     1   12 use MooseX::Types::Moose ();
  1         2  
  1         78  
11              
12             __PACKAGE__->provide_types_from(
13             qw(
14             MooseX::Types::Common::Numeric
15             MooseX::Types::Moose
16             )
17             );
18              
19             1;