]> wagnertech.de Git - mfinanz.git/blob - t/Support/Systemexec.pm
Revert von "Berichte -> GuV, BWA (get_accounts_g) und Berichte -> Bilanz (get_account...
[mfinanz.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;