kivitendo/t/Support/Systemexec.pm @ 452974ed
1d91e75c | Sven Schöling | # -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
package Support::Systemexec;
|
|||
require Exporter;
|
|||
@ISA = qw(Exporter);
|
|||
@EXPORT = qw(system exec);
|
|||
@EXPORT_OK = qw();
|
|||
sub system($$@) {
|
|||
1;
|
|||
}
|
|||
sub exec($$@) {
|
|||
1;
|
|||
}
|
|||
1;
|