File Coverage

blib/lib/SQL/Wizard/Expr/BinaryOp.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::BinaryOp;
2              
3 14     14   63 use strict;
  14         17  
  14         400  
4 14     14   67 use warnings;
  14         16  
  14         570  
5 14     14   51 use parent 'SQL::Wizard::Expr';
  14         17  
  14         56  
6              
7             sub new {
8 13     13 0 40 my ($class, %args) = @_;
9 13         40 $class->SUPER::new(%args);
10             }
11              
12             # args: op => '+', left => $expr, right => $expr
13              
14             1;