summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/dist/Tie-File/t/00_version.t
blob: 84f326d7502cc733291547a61ffb2cbc39c0f25f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

print "1..1\n";

my $testversion = "0.98";
use Tie::File;

if ($Tie::File::VERSION != $testversion) {
  print STDERR "

*** WHOA THERE!!! ***

You seem to be running version $Tie::File::VERSION of the module
against version $testversion of the test suite!

None of the other test results will be reliable.
";
  exit 1;
}

print "ok 1\n";