summaryrefslogtreecommitdiff
blob: 6632148e8bb0812d5edbaeaac6edbe7ac936f928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# We just return a static/predefined date because we're working with
# static md5 checksums.

package TEST;

use strict;
use warnings;

BEGIN {
	use Exporter();
	our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
	
	$VERSION     = 1.00;

	@ISA         = qw(Exporter);
	@EXPORT      = qw(&strftime);
	%EXPORT_TAGS = ( );
	@EXPORT_OK   = qw();
}
our @EXPORT_OK;

sub strftime {
	return "01 Jan 2009";
}

1;