File Coverage

blib/lib/EntityModel/Query/Union.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::Union;
2             {
3             $EntityModel::Query::Union::VERSION = '0.102';
4             }
5             use EntityModel::Class {
6 16         156 _isa => [qw{EntityModel::Query::SubQuery}],
7             subquery => { type => 'array', subclass => 'EntityModel::Query' }
8 16     16   82 };
  16         29  
9              
10             =head1 NAME
11              
12             EntityModel::Query::Union - union set operation
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 { 'union' }
33              
34             1;
35              
36             __END__