File Coverage

blib/lib/WebAPI/DBIC/Resource/GenericItemInvoke.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 WebAPI::DBIC::Resource::GenericItemInvoke;
2             $WebAPI::DBIC::Resource::GenericItemInvoke::VERSION = '0.004001';
3              
4 2     2   14315328 use Moo;
  2         33445  
  2         21  
5 2     2   4351 use namespace::clean;
  2         24409  
  2         11  
6              
7             extends 'WebAPI::DBIC::Resource::GenericCore';
8             with 'WebAPI::DBIC::Resource::Role::Item',
9             'WebAPI::DBIC::Resource::Role::ItemInvoke',
10             ;
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             WebAPI::DBIC::Resource::GenericItemInvoke
23              
24             =head1 VERSION
25              
26             version 0.004001
27              
28             =head1 NAME
29              
30             WebAPI::DBIC::Resource::GenericItemInvoke - a set of roles to implement a resource for making method calls on a DBIC item
31              
32             =head1 AUTHOR
33              
34             Tim Bunce <Tim.Bunce@pobox.com>
35              
36             =head1 COPYRIGHT AND LICENSE
37              
38             This software is copyright (c) 2015 by Tim Bunce.
39              
40             This is free software; you can redistribute it and/or modify it under
41             the same terms as the Perl 5 programming language system itself.
42              
43             =cut