Ignore all TT test while TT is broken
[dbsrgits/SQL-Translator.git] / t / 33tt-table-producer.t
index c1ccfb7..9dda29b 100644 (file)
@@ -21,6 +21,10 @@ use File::Temp qw/tempdir/;
 #=============================================================================
 
 BEGIN {
+    eval {require Template;};
+    plan skip_all => "Template v2.15+ is incompatible with SQL::Translator 0.08+"
+      if !$@ && Template->VERSION >= 2.15;
+
     maybe_plan(8, 'Template', 'Test::Differences')
 }
 use Test::Differences;