NAME
Test::MinimumVersion - does your code require newer perl than you think?
VERSION
version 0.001
$Id: /my/cs/projects/Test-MinimumVersion/trunk/lib/Test/MinimumVersion.pm 31276 2007-04-03T01:56:15.671974Z rjbs $
SYNOPSIS
Achtung!
This interface may change slightly over the next few weeks.
-- rjbs, 2007-04-02
Example minimum-perl.t:
#!perl
use Test::More tests => 1;
use Test::MinimumVersion;
minimum_version_ok('5.008');
minimum_version_ok
minimum_version_ok($version);
Given either a version string or a version object, this test passes if none of the Perl files in t or lib require a newer perl.
Clearly this routine needs more configurability.
TODO
AUTHOR
Ricardo SIGNES, <rjbs at cpan.org>
COPYRIGHT & LICENSE
Copyright 2007 Ricardo SIGNES, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.