File Coverage

blib/lib/PDF/TableX/Types.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package PDF::TableX::Types;
2              
3 1     1   17030 use MooseX::Types -declare => [qw/StyleDefinition/];
  0            
  0            
4             use MooseX::Types::Moose qw/ArrayRef Any/;
5              
6             subtype StyleDefinition, as ArrayRef;
7             coerce StyleDefinition, from Any, via {
8             [$_,$_,$_,$_];
9             };
10              
11             1;
12              
13             =head1 NAME
14              
15             PDF::TableX::Types
16              
17             =head1 VERSION
18              
19             TODO
20              
21             =head1 AUTHOR
22              
23             Grzegorz Papkala, C<< <grzegorzpapkala at gmail.com> >>
24              
25             =head1 BUGS
26              
27             Please report any bugs or feature requests at: L<https://github.com/grzegorzpapkala/PDF-TableX/issues>
28              
29             =head1 SUPPORT
30              
31             PDF::TableX is hosted on GitHub L<https://github.com/grzegorzpapkala/PDF-TableX>
32              
33             =head1 ACKNOWLEDGEMENTS
34              
35             =head1 COPYRIGHT & LICENSE
36              
37             Copyright 2013 Grzegorz Papkala, all rights reserved.
38              
39             This program is free software; you can redistribute it and/or modify it
40             under the same terms as Perl itself.
41              
42             =cut