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         3  
  1         17  
4              
5             our $VERSION = '1.001000';
6              
7 1     1   6006 use parent 'MooseX::Types::Combine';
  1         3  
  1         10  
8              
9 1     1   2932 use MooseX::Types::Common::Numeric ();
  1         125161  
  1         50  
10 1     1   14 use MooseX::Types::Moose ();
  1         2  
  1         92  
11              
12             __PACKAGE__->provide_types_from(
13             qw(
14             MooseX::Types::Common::Numeric
15             MooseX::Types::Moose
16             )
17             );
18              
19             1;