~ubuntu-branches/ubuntu/oneiric/bugzilla/oneiric

« back to all changes in this revision

Viewing changes to t/Support/Systemexec.pm

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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;