summaryrefslogtreecommitdiff
path: root/lib/Tie/File/t/00_version.t
blob: 565651a05c81227bc6493fb30d1b41d4ee674d64 (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.19) {
  print STDERR "
WHOA THERE!!

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

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

print "ok 1\n";