]> wagnertech.de Git - kivitendo-erp.git/blobdiff - t/Support/Systemexec.pm
Automatisierte Syntaxtests, Framework für spätere Modultests.
[kivitendo-erp.git] / t / Support / Systemexec.pm
diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm
new file mode 100644 (file)
index 0000000..676ee02
--- /dev/null
@@ -0,0 +1,14 @@
+# -*- 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;