blob: 8a154b1b727da12305925bd4a9102648f309d18f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/perl
print "1..1\n";
use Tie::File;
if ($Tie::File::VERSION != 0.20) {
print STDERR "
WHOA THERE!!
You seem to be running version $Tie::File::VERSION of the module against
version 0.20 of the test suite!
None of the other test results will be reliable.
";
exit 1;
}
print "ok 1\n";
|