* Added --test parameter, Closes: #145520

This commit is contained in:
joey
2002-05-03 00:12:13 +00:00
parent ddc50f48fb
commit 451483bc02
5 changed files with 72 additions and 10 deletions

View File

@@ -177,7 +177,7 @@ sub checkfile {
=item install
Simply installs a package file. The filename is passed on standard input.
Simply installs a package file. The filename is passed.
This has to be overridden in child classes.
=cut
@@ -186,6 +186,18 @@ sub install {
my $this=shift;
}
=item test
Test a package file. The filename is passed, should return an array of lines
of test results. Child classses may implement this.
=cut
sub test {
my $this=shift;
return;
}
=item filename
Set/get the filename of the package the object represents.