File Coverage

blib/lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/v0_06.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 DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_06;
2              
3 2     2   18 use strict;
  2         6  
  2         58  
4 2     2   13 use warnings;
  2         5  
  2         53  
5 2     2   11 use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_07';
  2         6  
  2         890  
6 2     2   18 use mro 'c3';
  2         8  
  2         16  
7              
8             our $VERSION = '0.07051';
9              
10             sub _normalize_name {
11 32     32   89 my ($self, $name) = @_;
12              
13 32         107 $name = $self->_sanitize_name($name);
14              
15 32         125 return lc $name;
16             }
17              
18             =head1 NAME
19              
20             DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_06 - RelBuilder for
21             compatibility with DBIx::Class::Schema::Loader version 0.06000
22              
23             =head1 DESCRIPTION
24              
25             See L and
26             L.
27              
28             =head1 AUTHORS
29              
30             See L.
31              
32             =head1 LICENSE
33              
34             This library is free software; you can redistribute it and/or modify it under
35             the same terms as Perl itself.
36              
37             =cut
38              
39             1;
40             # vim:et sts=4 sw=4 tw=0: