File Coverage

blib/lib/Data/Context/Finder/DB/Schema.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Data::Context::Finder::DB::Schema;
2              
3             # Created on: 2016-01-18 13:44:52
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 2     2   2021 use strict;
  2         6  
  2         72  
10 2     2   11 use warnings;
  2         5  
  2         65  
11 2     2   12 use version;
  2         19  
  2         18  
12 2     2   150 use utf8;
  2         4  
  2         17  
13 2     2   67 use base 'DBIx::Class::Schema';
  2         5  
  2         1345  
14              
15             our $VERSION = version->new('0.0.1');
16              
17             __PACKAGE__->load_namespaces;
18              
19              
20              
21             1;
22              
23             __END__
24              
25             =head1 NAME
26              
27             Data::Context::Finder::DB::Schema - Schema for Finder
28              
29             =head1 VERSION
30              
31             This documentation refers to Data::Context::Finder::DB::Schema version 0.0.1
32              
33             =head1 SYNOPSIS
34              
35             use Data::Context::Finder::DB::Schema;
36              
37             # Brief but working code example(s) here showing the most common usage(s)
38             # This section will be as far as many users bother reading, so make it as
39             # educational and exemplary as possible.
40              
41              
42             =head1 DESCRIPTION
43              
44             =head1 SUBROUTINES/METHODS
45              
46             =head1 DIAGNOSTICS
47              
48             =head1 CONFIGURATION AND ENVIRONMENT
49              
50             =head1 DEPENDENCIES
51              
52             =head1 INCOMPATIBILITIES
53              
54             =head1 BUGS AND LIMITATIONS
55              
56             There are no known bugs in this module.
57              
58             Please report problems to Ivan Wills (ivan.wills@gmail.com).
59              
60             Patches are welcome.
61              
62             =head1 AUTHOR
63              
64             Ivan Wills - (ivan.wills@gmail.com)
65              
66             =head1 LICENSE AND COPYRIGHT
67              
68             Copyright (c) 2016 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW Australia 2077).
69             All rights reserved.
70              
71             This module is free software; you can redistribute it and/or modify it under
72             the same terms as Perl itself. See L<perlartistic>. This program is
73             distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
74             without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
75             PARTICULAR PURPOSE.
76              
77             =cut