X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2FSupport%2FSystemexec.pm;h=eefc52c711a3d027b5ab3919440e62320d190ac2;hb=b775c378552e6b5bf59f98046cdf4e577cd351df;hp=676ee02a4f80daefc45d545fc4190c17caa78090;hpb=82d241d9ab73fe9dfda7caac776a9c364036ca44;p=kivitendo-erp.git 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;