File Coverage

blib/lib/PDF/TableX/Types.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package PDF::TableX::Types;
2              
3 7     7   70541 use MooseX::Types -declare => [qw/StyleDefinition/];
  7         541961  
  7         63  
4 7     7   33946 use MooseX::Types::Moose qw/ArrayRef Any/;
  7         17646  
  7         55  
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