File Coverage

blib/lib/Fey/SQL/Fragment/Where/SubgroupStart.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Fey::SQL::Fragment::Where::SubgroupStart;
2              
3 27     27   131 use strict;
  27         40  
  27         1141  
4 27     27   129 use warnings;
  27         43  
  27         847  
5 27     27   171 use namespace::autoclean;
  27         47  
  27         228  
6              
7             our $VERSION = '0.42';
8              
9 27     27   2414 use Moose 0.90;
  27         696  
  27         243  
10              
11             my $Paren = '(';
12              
13             sub sql {
14 5     5 0 11 return $Paren;
15             }
16              
17             __PACKAGE__->meta()->make_immutable();
18              
19             1;
20              
21             # ABSTRACT: Represents the start of a subgroup in a WHERE clause
22              
23             __END__
24              
25             =pod
26              
27             =head1 NAME
28              
29             Fey::SQL::Fragment::Where::SubgroupStart - Represents the start of a subgroup in a WHERE clause
30              
31             =head1 VERSION
32              
33             version 0.42
34              
35             =head1 DESCRIPTION
36              
37             This class represents the start of a subgroup in a WHERE clause
38              
39             It is intended solely for internal use in L<Fey::SQL> objects, and as
40             such is not intended for public use.
41              
42             =head1 BUGS
43              
44             See L<Fey> for details on how to report bugs.
45              
46             =head1 AUTHOR
47              
48             Dave Rolsky <autarch@urth.org>
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is Copyright (c) 2011 - 2015 by Dave Rolsky.
53              
54             This is free software, licensed under:
55              
56             The Artistic License 2.0 (GPL Compatible)
57              
58             =cut