Wrap the macro arguments for ck_proto in ().
[p5sagit/p5-mst-13.2.git] / lib / Tie / File / t / 00_version.t
CommitLineData
b3fe5a4c 1#!/usr/bin/perl
2
3print "1..1\n";
4
56ee885b 5my $testversion = "0.97_01";
b3fe5a4c 6use Tie::File;
7
57c7bc08 8if ($Tie::File::VERSION != $testversion) {
b3fe5a4c 9 print STDERR "
b3fe5a4c 10
57c7bc08 11*** WHOA THERE!!! ***
12
13You seem to be running version $Tie::File::VERSION of the module
14against version $testversion of the test suite!
b3fe5a4c 15
16None of the other test results will be reliable.
17";
18 exit 1;
19}
20
21print "ok 1\n";
6ae23f41 22