File Coverage

blib/lib/File/Replace/Fancy.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             #!perl
2             package File::Replace::Fancy;
3 1     1   114713 use warnings;
  1         2  
  1         28  
4 1     1   4 use strict;
  1         2  
  1         16  
5 1     1   362 use File::Replace::SingleHandle ();
  1         6  
  1         19  
6 1     1   347 use File::Replace::DualHandle ();
  1         2  
  1         24  
7              
8             =head1 Name
9              
10             File::Replace::Fancy - Perl extension that extends the File::Replace module
11              
12             =head1 Description
13              
14             B You don't need to C it.
15             Please see the functions C and C in
16             L for the features provided by this distribution.
17              
18             =head1 Author, Copyright, and License
19              
20             Copyright (c) 2017-2023 Hauke Daempfling (haukex@zero-g.net)
21             at the Leibniz Institute of Freshwater Ecology and Inland Fisheries (IGB),
22             Berlin, Germany, L
23              
24             This program is free software: you can redistribute it and/or modify
25             it under the terms of the GNU General Public License as published by
26             the Free Software Foundation, either version 3 of the License, or
27             (at your option) any later version.
28              
29             This program is distributed in the hope that it will be useful,
30             but WITHOUT ANY WARRANTY; without even the implied warranty of
31             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32             GNU General Public License for more details.
33              
34             You should have received a copy of the GNU General Public License
35             along with this program. If not, see L.
36              
37             =cut
38              
39             1;