File Coverage

blib/lib/KiokuDB/Backend/DBI/Schema.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 KiokuDB::Backend::DBI::Schema;
2             BEGIN {
3 5     5   159 $KiokuDB::Backend::DBI::Schema::AUTHORITY = 'cpan:NUFFIN';
4             }
5             $KiokuDB::Backend::DBI::Schema::VERSION = '1.23';
6 5     5   26 use Moose;
  5         11  
  5         37  
7              
8 5     5   30701 use namespace::clean -except => 'meta';
  5         13  
  5         49  
9              
10             extends qw(DBIx::Class::Schema);
11              
12             __PACKAGE__->load_components(qw(Schema::KiokuDB));
13              
14             __PACKAGE__
15              
16             __END__
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             KiokuDB::Backend::DBI::Schema
25              
26             =head1 VERSION
27              
28             version 1.23
29              
30             =head1 AUTHOR
31              
32             Yuval Kogman <nothingmuch@woobling.org>
33              
34             =head1 COPYRIGHT AND LICENSE
35              
36             This software is copyright (c) 2014 by Yuval Kogman, Infinity Interactive.
37              
38             This is free software; you can redistribute it and/or modify it under
39             the same terms as the Perl 5 programming language system itself.
40              
41             =cut