File Coverage

blib/lib/EntityModel/Query/Except.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 7 57.1


line stmt bran cond sub pod time code
1             package EntityModel::Query::Except;
2             {
3             $EntityModel::Query::Except::VERSION = '0.102';
4             }
5             use EntityModel::Class {
6 16         145 _isa => [qw{EntityModel::Query::SubQuery}],
7             subquery => { type => 'array', subclass => 'EntityModel::Query' }
8 16     16   86 };
  16         33  
9              
10             =head1 NAME
11              
12             EntityModel::Query::Except - support for EXCEPT set logic
13              
14             =head1 VERSION
15              
16             version 0.102
17              
18             =head1 SYNOPSIS
19              
20             See L.
21              
22             =head1 DESCRIPTION
23              
24             See L.
25              
26             =cut
27              
28             =head1 METHODS
29              
30             =cut
31              
32 0     0 0   sub subtype { 'except' }
33              
34             1;
35              
36             __END__