File Coverage

blib/lib/EntityModel/Query/Delete.pm
Criterion Covered Total %
statement 3 5 60.0
branch n/a
condition n/a
subroutine 1 3 33.3
pod 2 2 100.0
total 6 10 60.0


line stmt bran cond sub pod time code
1             package EntityModel::Query::Delete;
2             {
3             $EntityModel::Query::Delete::VERSION = '0.102';
4             }
5             use EntityModel::Class {
6 16         136 _isa => [qw{EntityModel::Query}],
7 16     16   85 };
  16         30  
8              
9             =head1 NAME
10              
11             EntityModel::Query::Delete - support for SQL DELETE statements
12              
13             =head1 VERSION
14              
15             version 0.102
16              
17             =head1 SYNOPSIS
18              
19             See L.
20              
21             =head1 DESCRIPTION
22              
23             See L.
24              
25             =cut
26              
27             =head1 METHODS
28              
29             =cut
30              
31             =head2 type
32              
33             =cut
34              
35 0     0 1   sub type { 'delete'; }
36              
37             =head2 keyword_order
38              
39             =cut
40              
41 0     0 1   sub keyword_order { qw{type from where order offset limit}; }
42              
43             1;
44              
45             __END__