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         68  
4 2     2   10 use warnings;
  2         6  
  2         52  
5 2     2   13 use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_07';
  2         13  
  2         962  
6 2     2   14 use mro 'c3';
  2         6  
  2         17  
7              
8             our $VERSION = '0.07050';
9              
10             sub _normalize_name {
11 32     32   84 my ($self, $name) = @_;
12              
13 32         125 $name = $self->_sanitize_name($name);
14              
15 32         117 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: