[open-ils-commits] r18894 - branches/rel_2_0/Open-ILS/tests (gmc)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Nov 30 17:32:37 EST 2010


Author: gmc
Date: 2010-11-30 17:32:32 -0500 (Tue, 30 Nov 2010)
New Revision: 18894

Added:
   branches/rel_2_0/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: branches/rel_2_0/Open-ILS/tests/module_versions.t
===================================================================
--- branches/rel_2_0/Open-ILS/tests/module_versions.t	                        (rev 0)
+++ branches/rel_2_0/Open-ILS/tests/module_versions.t	2010-11-30 22:32:32 UTC (rev 18894)
@@ -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