File Coverage

blib/lib/DBIx/Class/Smooth/Lookup/DateTime.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   968 use 5.20.0;
  2         7  
2 2     2   11 use strict;
  2         3  
  2         76  
3 2     2   10 use warnings;
  2         5  
  2         101  
4              
5             package DBIx::Class::Smooth::Lookup::DateTime;
6              
7             # ABSTRACT: Short intro
8             our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
9             our $VERSION = '0.0102';
10              
11 2         9 use parent qw/
12             DBIx::Class::Smooth::Lookup::DateTime::year
13             DBIx::Class::Smooth::Lookup::DateTime::month
14             DBIx::Class::Smooth::Lookup::DateTime::day
15             DBIx::Class::Smooth::Lookup::DateTime::hour
16             DBIx::Class::Smooth::Lookup::DateTime::minute
17             DBIx::Class::Smooth::Lookup::DateTime::second
18             DBIx::Class::Smooth::Lookup::DateTime::datepart
19 2     2   9 /;
  2         4  
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             DBIx::Class::Smooth::Lookup::DateTime - 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