File Coverage

blib/lib/WebAPI/DBIC/Resource/GenericCore.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::GenericCore;
2             $WebAPI::DBIC::Resource::GenericCore::VERSION = '0.003002';
3              
4 8     8   8791272 use Moo;
  8         42009  
  8         70  
5 8     8   8709 use MooX::StrictConstructor;
  8         83251  
  8         71  
6              
7             extends 'WebAPI::DBIC::Resource::Base';
8             with 'WebAPI::DBIC::Role::JsonEncoder',
9             'WebAPI::DBIC::Role::JsonParams',
10             'WebAPI::DBIC::Resource::Role::Router',
11             'WebAPI::DBIC::Resource::Role::Identity',
12             'WebAPI::DBIC::Resource::Role::Relationship',
13             'WebAPI::DBIC::Resource::Role::DBIC',
14             'WebAPI::DBIC::Resource::Role::DBICException',
15             'WebAPI::DBIC::Resource::Role::DBICAuth',
16             'WebAPI::DBIC::Resource::Role::DBICParams',
17             ;
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             WebAPI::DBIC::Resource::GenericCore
30              
31             =head1 VERSION
32              
33             version 0.003002
34              
35             =head1 NAME
36              
37             WebAPI::DBIC::Resource::GenericCore - a set of core roles to implement a generic DBIC resources
38              
39             =head1 AUTHOR
40              
41             Tim Bunce <Tim.Bunce@pobox.com>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2015 by Tim Bunce.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut