X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/82d241d9ab73fe9dfda7caac776a9c364036ca44..refs/heads/price_source:/t/Support/Systemexec.pm diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm index 676ee02a4..eefc52c71 100644 --- a/t/Support/Systemexec.pm +++ b/t/Support/Systemexec.pm @@ -3,7 +3,7 @@ package Support::Systemexec; require Exporter; @ISA = qw(Exporter); -@EXPORT = qw(system exec); +@EXPORT = qw(system exec open); @EXPORT_OK = qw(); sub system($$@) { 1; @@ -11,4 +11,7 @@ sub system($$@) { sub exec($$@) { 1; } +sub open(*$$@) { + 1; +} 1;