diff options
author | zach%zachlipton.com <> | 2001-09-10 04:48:14 +0200 |
---|---|---|
committer | zach%zachlipton.com <> | 2001-09-10 04:48:14 +0200 |
commit | 6596544fef79b37ed08c4bf8433df8779093ec9a (patch) | |
tree | 0081bf7b6ef9395b1b6ca01df0004e3b0e02d8fc /t/Support | |
parent | faf997288b1c1d04d48e87a5f0b395a24e4476b1 (diff) | |
download | bugzilla-6596544fef79b37ed08c4bf8433df8779093ec9a.tar.gz bugzilla-6596544fef79b37ed08c4bf8433df8779093ec9a.tar.xz |
Oops. Forgot to check this is.
Diffstat (limited to 't/Support')
-rw-r--r-- | t/Support/Systemexec.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm new file mode 100644 index 000000000..eee445c14 --- /dev/null +++ b/t/Support/Systemexec.pm @@ -0,0 +1,12 @@ +package Systemexec; +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(system exec); +@EXPORT_OK = qw(); +sub system($$@) { + 1; +} +sub exec($$@) { + 1; +} +1; |