File Coverage

blib/lib/SQL/Wizard/Expr/Order.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::Order;
2              
3 14     14   113 use strict;
  14         18  
  14         403  
4 14     14   45 use warnings;
  14         14  
  14         473  
5 14     14   44 use parent 'SQL::Wizard::Expr';
  14         15  
  14         84  
6              
7             sub new {
8 6     6 0 56 my ($class, %args) = @_;
9 6         32 $class->SUPER::new(%args);
10             }
11              
12             # args: expr => $expr_obj, direction => 'ASC'|'DESC', nulls => 'FIRST'|'LAST' (optional)
13              
14             1;