mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
CI: Fix TestFunctions
- Use 'use parent' instead of '@ISA' - Add Perl::Critic leniency
This commit is contained in:
parent
971b76ab37
commit
9115c6bdca
1 changed files with 3 additions and 1 deletions
|
@ -14,7 +14,9 @@ use File::Basename qw/
|
||||||
require File::Temp;
|
require File::Temp;
|
||||||
|
|
||||||
use Exporter;
|
use Exporter;
|
||||||
our @ISA = qw/ Exporter /;
|
use parent 'Exporter';
|
||||||
|
## no critic ( Modules::ProhibitAutomaticExportation )
|
||||||
|
# This is a test function library, it's not production code...
|
||||||
our @EXPORT = qw/
|
our @EXPORT = qw/
|
||||||
are_hardlinked
|
are_hardlinked
|
||||||
file_exists
|
file_exists
|
||||||
|
|
Loading…
Reference in a new issue