[open-ils-commits] r18893 - trunk/Open-ILS/tests (gmc)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Nov 30 17:32:12 EST 2010
Author: gmc
Date: 2010-11-30 17:32:06 -0500 (Tue, 30 Nov 2010)
New Revision: 18893
Added:
trunk/Open-ILS/tests/module_versions.t
Log:
test case for minimum required version of Perl modules
Encode > 2.12 particularly matters, but there are likely
others of significance.
Signed-off-by: Galen Charlton <gmc at esilibrary.com>
Added: trunk/Open-ILS/tests/module_versions.t
===================================================================
--- trunk/Open-ILS/tests/module_versions.t (rev 0)
+++ trunk/Open-ILS/tests/module_versions.t 2010-11-30 22:32:06 UTC (rev 18893)
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+
+use Test::More tests => 1;
+
+# check minimum required versions of Perl modules
+BEGIN {
+ use_ok('Encode', '2.13')
+};
More information about the open-ils-commits
mailing list