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   78 use strict;
  14         26  
  14         477  
4 14     14   82 use warnings;
  14         21  
  14         746  
5 14     14   4507 use parent 'SQL::Wizard::Expr';
  14         3440  
  14         80  
6              
7             sub new {
8 69     69 0 245 my ($class, %args) = @_;
9 69         299 $class->SUPER::new(%args);
10             }
11              
12             # args: name => 'u.id'
13              
14             1;