File Coverage

blib/lib/SQL/Wizard/Expr/Value.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::Value;
2              
3 14     14   63 use strict;
  14         16  
  14         414  
4 14     14   43 use warnings;
  14         14  
  14         585  
5 14     14   46 use parent 'SQL::Wizard::Expr';
  14         15  
  14         50  
6              
7             sub new {
8 48     48 0 125 my ($class, %args) = @_;
9 48         187 $class->SUPER::new(%args);
10             }
11              
12             # args: value => 'some string'
13              
14             1;