File Coverage

blib/lib/Fey/SQL/Fragment/Where/SubgroupEnd.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::SubgroupEnd;
2              
3 27     27   119 use strict;
  27         41  
  27         1064  
4 27     27   125 use warnings;
  27         44  
  27         773  
5 27     27   120 use namespace::autoclean;
  27         35  
  27         185  
6              
7             our $VERSION = '0.42';
8              
9 27     27   2327 use Moose 0.90;
  27         705  
  27         196  
10              
11             my $Paren = ')';
12              
13             sub sql {
14 5     5 0 25 return $Paren;
15             }
16              
17             __PACKAGE__->meta()->make_immutable();
18              
19             1;
20              
21             # ABSTRACT: Represents the end of a subgroup in a WHERE clause
22              
23             __END__
24              
25             =pod
26              
27             =head1 NAME
28              
29             Fey::SQL::Fragment::Where::SubgroupEnd - Represents the end 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 end 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