File Coverage

blib/lib/App/Dochazka.pm
Criterion Covered Total %
statement 18 22 81.8
branch n/a
condition n/a
subroutine 6 7 85.7
pod 1 1 100.0
total 25 30 83.3


line stmt bran cond sub pod time code
1             # *************************************************************************
2             # Copyright (c) 2014, SUSE LLC
3             #
4             # All rights reserved.
5             #
6             # Redistribution and use in source and binary forms, with or without
7             # modification, are permitted provided that the following conditions are met:
8             #
9             # 1. Redistributions of source code must retain the above copyright notice,
10             # this list of conditions and the following disclaimer.
11             #
12             # 2. Redistributions in binary form must reproduce the above copyright
13             # notice, this list of conditions and the following disclaimer in the
14             # documentation and/or other materials provided with the distribution.
15             #
16             # 3. Neither the name of SUSE LLC nor the names of its contributors may be
17             # used to endorse or promote products derived from this software without
18             # specific prior written permission.
19             #
20             # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21             # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22             # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23             # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24             # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25             # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26             # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27             # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28             # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29             # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30             # POSSIBILITY OF SUCH DAMAGE.
31             # *************************************************************************
32              
33             # ------------------------
34             # Model module
35             # ------------------------
36              
37             package App::Dochazka;
38              
39 1     1   25451 use 5.012;
  1         5  
  1         56  
40 1     1   8 use strict;
  1         2  
  1         57  
41 1     1   8 use warnings;
  1         8  
  1         60  
42              
43 1     1   7 use Exporter 'import';
  1         1  
  1         45  
44 1     1   792 use Time::Piece;
  1         19419  
  1         6  
45 1     1   101 use Time::Seconds;
  1         2  
  1         309  
46              
47              
48              
49             =head1 NAME
50              
51             App::Dochazka - Dochazka Attendance and Time Tracking System shared modules
52              
53              
54              
55              
56             =head1 VERSION
57              
58             Version 0.189
59              
60             =cut
61              
62             our $VERSION = '0.189';
63              
64              
65              
66              
67             =head1 DESCRIPTION
68              
69             This distro contains modules that are used by both the server
70             L and the command-line client L.
71              
72             =cut
73              
74              
75              
76             =head1 PACKAGE VARIABLES AND EXPORTS
77              
78             =cut
79              
80             our ( $t, $today, $yesterday, $tomorrow );
81              
82             our @EXPORT_OK = qw(
83             $t
84             $today
85             $yesterday
86             $tomorrow
87             init_timepiece
88             );
89              
90              
91              
92             =head1 FUNCTIONS
93              
94              
95             =head2 init_timepiece
96              
97             (Re-)initialize the date/time-related package variables
98              
99             =cut
100              
101             sub init_timepiece {
102             #print "Entering " . __PACKAGE__ . "::init_timepiece\n";
103 0     0 1   $t = localtime;
104 0           $today = $t->ymd;
105 0           $yesterday = ($t - ONE_DAY)->ymd;
106 0           $tomorrow = ($t + ONE_DAY)->ymd;
107             }
108              
109              
110             1;
111              
112