diff options
-rw-r--r-- | t/Support/Systemexec.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm index 65be229e3..e73763f8f 100644 --- a/t/Support/Systemexec.pm +++ b/t/Support/Systemexec.pm @@ -11,14 +11,15 @@ use 5.10.1; use strict; use warnings; -require Exporter; -@ISA = qw(Exporter); -@EXPORT = qw(system exec); -@EXPORT_OK = qw(); +use parent qw(Exporter); +@Support::Systemexec::EXPORT = qw(system exec); + sub system($$@) { 1; } + sub exec($$@) { 1; } + 1; |