File Coverage

blib/lib/DBIx/Class/Smooth/Lookup/Operators.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1 2     2   111047 use 5.20.0;
  2         8  
2 2     2   11 use strict;
  2         5  
  2         71  
3 2     2   10 use warnings;
  2         5  
  2         125  
4              
5             package DBIx::Class::Smooth::Lookup::Operators;
6              
7             # ABSTRACT: Short intro
8             our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
9             our $VERSION = '0.0102';
10              
11 2         14 use parent qw/
12             DBIx::Class::Smooth::Lookup::Operators::gt
13             DBIx::Class::Smooth::Lookup::Operators::gte
14             DBIx::Class::Smooth::Lookup::Operators::lt
15             DBIx::Class::Smooth::Lookup::Operators::lte
16             DBIx::Class::Smooth::Lookup::Operators::in
17             DBIx::Class::Smooth::Lookup::Operators::like
18             DBIx::Class::Smooth::Lookup::Operators::not_in
19 2     2   12 /;
  2         3  
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             DBIx::Class::Smooth::Lookup::Operators - Short intro
32              
33             =head1 VERSION
34              
35             Version 0.0102, released 2019-12-22.
36              
37             =head1 SOURCE
38              
39             L<https://github.com/Csson/p5-DBIx-Class-Smooth>
40              
41             =head1 HOMEPAGE
42              
43             L<https://metacpan.org/release/DBIx-Class-Smooth>
44              
45             =head1 AUTHOR
46              
47             Erik Carlsson <info@code301.com>
48              
49             =head1 COPYRIGHT AND LICENSE
50              
51             This software is copyright (c) 2018 by Erik Carlsson.
52              
53             This is free software; you can redistribute it and/or modify it under
54             the same terms as the Perl 5 programming language system itself.
55              
56             =cut