File Coverage

lib/SQL/Admin/Catalog/Table/Unique.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1              
2             package SQL::Admin::Catalog::Table::Unique;
3 2     2   1297 use base qw( SQL::Admin::Catalog::Table::Constraint );
  2         6  
  2         202  
4              
5 2     2   11 use strict;
  2         4  
  2         72  
6 2     2   11 use warnings;
  2         4  
  2         169  
7              
8             our $VERSION = v0.5.0;
9              
10             ######################################################################
11             ######################################################################
12             sub _constraint_type { # ;
13 4     4   10 'unique';
14             }
15              
16              
17             ######################################################################
18             ######################################################################
19              
20             package SQL::Admin::Catalog::Table::Unique;
21              
22             1;