Release commit for 1.62
[dbsrgits/SQL-Translator.git] / t / 61translator_agnostic.t
index f35abca..88cd06d 100644 (file)
@@ -2,10 +2,15 @@
 
 use warnings;
 use strict;
-use Test::More qw/no_plan/;
-use Test::Exception;
+use Test::More;
+use Test::SQL::Translator;
 use FindBin qw/$Bin/;
 
+BEGIN {
+    maybe_plan(1, 'SQL::Translator::Parser::XML',
+                  'SQL::Translator::Producer::XML');
+}
+
 use SQL::Translator;
 
 # Producing a schema with a Translator different from the one the schema was
@@ -36,7 +41,7 @@ TODO: {
 
   like (
     $sql,
-    qr/^\s*CREATE TABLE/m,  #assume there is at least one create table statement 
+    qr/^\s*CREATE TABLE/m,  #assume there is at least one create table statement
     "Received some meaningful output from the producer",
   );
 }