File Coverage

blib/lib/FeyX/Active/SQL/Select.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package FeyX::Active::SQL::Select;
2 1     1   2828 use Moose;
  0            
  0            
3              
4             our $VERSION = '0.03';
5             our $AUTHORITY = 'cpan:STEVAN';
6              
7             extends 'Fey::SQL::Select';
8             with 'FeyX::Active::SQL';
9              
10             __PACKAGE__->meta->make_immutable;
11              
12             no Moose; 1;
13              
14             __END__
15              
16             =pod
17              
18             =head1 NAME
19              
20             FeyX::Active::SQL::Select - An active SELECT statement
21              
22             =head1 DESCRIPTION
23              
24             This is a subclass of L<Fey::SQL::Select> that also consumes
25             the L<FeyX::Active::SQL> role. Please refer to both of those
26             modules for more infomation.
27              
28             =head1 BUGS
29              
30             All complex software has bugs lurking in it, and this module is no
31             exception. If you find a bug please either email me, or add the bug
32             to cpan-RT.
33              
34             =head1 AUTHOR
35              
36             Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             Copyright 2009-2010 Infinity Interactive, Inc.
41              
42             L<http://www.iinteractive.com>
43              
44             This library is free software; you can redistribute it and/or modify
45             it under the same terms as Perl itself.
46              
47             =cut