File Coverage

blib/lib/SQL/Wizard/Expr/Column.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1             package SQL::Wizard::Expr::Column;
2              
3 14     14   80 use strict;
  14         24  
  14         480  
4 14     14   60 use warnings;
  14         20  
  14         690  
5 14     14   4784 use parent 'SQL::Wizard::Expr';
  14         3454  
  14         91  
6              
7             sub new {
8 69     69 0 217 my ($class, %args) = @_;
9 69         267 $class->SUPER::new(%args);
10             }
11              
12             # args: name => 'u.id'
13              
14             1;