File Coverage

blib/lib/App/Upfiles/Conf.pm
Criterion Covered Total %
statement 8 10 80.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 11 15 73.3


line stmt bran cond sub pod time code
1             # Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2020 Kevin Ryde
2              
3             # This file is part of Upfiles.
4             #
5             # Upfiles is free software; you can redistribute it and/or modify it under
6             # the terms of the GNU General Public License as published by the Free
7             # Software Foundation; either version 3, or (at your option) any later
8             # version.
9             #
10             # Upfiles is distributed in the hope that it will be useful, but WITHOUT
11             # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12             # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13             # more details.
14             #
15             # You should have received a copy of the GNU General Public License along
16             # with Upfiles. If not, see .
17              
18              
19             package App::Upfiles::Conf;
20 1     1   456 use 5.010;
  1         3  
21 1     1   5 use strict;
  1         1  
  1         17  
22 1     1   4 use warnings;
  1         1  
  1         63  
23              
24             our $VERSION = 14;
25              
26             our $upf;
27              
28             sub upfiles {
29 0     0 0   $upf->upfiles(@_);
30 0           return 1;
31             }
32              
33             1;
34             __END__