File Coverage

blib/lib/Data/Mapper/Schema.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 6 50.0
pod 0 3 0.0
total 12 21 57.1


line stmt bran cond sub pod time code
1             package Data::Mapper::Schema;
2 1     1   3050 use strict;
  1         2  
  1         42  
3 1     1   6 use warnings;
  1         2  
  1         33  
4 1     1   6 use parent qw(Data::Mapper::Class);
  1         2  
  1         6  
5              
6 0     0 0   sub table { $_[0]->{table} }
7 0     0 0   sub primary_keys { $_[0]->{primary_keys} }
8 0     0 0   sub columns { $_[0]->{columns} }
9              
10             !!1;