[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.2.10-81-gf594b61



The following commit has been merged in the master branch:
commit 6388dcfe7401a664ac76da10a765e68a76008607
Author: Raphael Geissert <atomo64@gmail.com>
Date:   Sat May 2 00:20:39 2009 -0500

    Test that all Perl code can run with a minimum version of Perl
    
    So far the newest version required is 5.8.0, so it is the minimum version
    we test for.

diff --git a/t/scripts/minimum-version.t b/t/scripts/minimum-version.t
new file mode 100644
index 0000000..1cf6561
--- /dev/null
+++ b/t/scripts/minimum-version.t
@@ -0,0 +1,8 @@
+#!/usr/bin/perl -w
+
+use Test::More;
+eval 'use Test::MinimumVersion';
+plan skip_all => 'Test::MinimumVersion required to run this test' if $@;
+
+# sarge was released with 5.8.4, etch with 5.8.8, lenny with 5.10.0
+all_minimum_version_ok('v5.8.0', { paths => [$ENV{'LINTIAN_ROOT'}] });

-- 
Debian package checker


Reply to: