]> wagnertech.de Git - kivitendo-erp.git/blob - t/Support/Systemexec.pm
Umstellung auf SL::DBUpgrade2-API: process_query ist nicht mehr in SL::User
[kivitendo-erp.git] / t / Support / Systemexec.pm
1 # -*- Mode: perl; indent-tabs-mode: nil -*-
2
3 package Support::Systemexec;
4 require Exporter;
5 @ISA = qw(Exporter);
6 @EXPORT = qw(system exec);
7 @EXPORT_OK = qw();
8 sub system($$@) {
9   1;
10 }
11 sub exec($$@) {
12   1;
13 }
14 1;