File Coverage

blib/lib/SQL/Wizard/Expr/Delete.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::Delete;
2              
3 14     14   92 use strict;
  14         23  
  14         488  
4 14     14   54 use warnings;
  14         31  
  14         680  
5 14     14   69 use parent 'SQL::Wizard::Expr';
  14         43  
  14         80  
6              
7             sub new {
8 6     6 0 14 my ($class, %args) = @_;
9             # args: from => 'users', where => {...}, using => '...', returning => [...]
10 6         27 $class->SUPER::new(%args);
11             }
12              
13             1;