File Coverage

blib/lib/App/AquariumHive/DB/Result.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package App::AquariumHive::DB::Result;
2             BEGIN {
3 1     1   886 $App::AquariumHive::DB::Result::AUTHORITY = 'cpan:GETTY';
4             }
5             $App::AquariumHive::DB::Result::VERSION = '0.002';
6 1     1   7 use Moo;
  1         1  
  1         6  
7 1     1   258 use namespace::clean;
  1         1  
  1         7  
8              
9             extends 'DBIx::Class::Core';
10              
11             $ENV{DBIC_NULLABLE_KEY_NOWARN} = 1;
12              
13             with 'App::AquariumHive::LogRole';
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             App::AquariumHive::DB::Result
24              
25             =head1 VERSION
26              
27             version 0.002
28              
29             =head1 AUTHOR
30              
31             Torsten Raudssus <torsten@raudss.us>
32              
33             =head1 COPYRIGHT AND LICENSE
34              
35             This software is copyright (c) 2014 by Torsten Raudssus.
36              
37             This is free software; you can redistribute it and/or modify it under
38             the same terms as the Perl 5 programming language system itself.
39              
40             =cut