X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F61translator_agnostic.t;h=88cd06d57770bcb7e9bfd8365d7c5be2f6985fa3;hb=7e212236d2058cd89f78321f416fb9a27e4257ec;hp=f35abca484c0776f2c04c0ff84a4b2a6d33802f5;hpb=e0d2b70b41dc4c9e7699d4219f65f30bd08e75a7;p=dbsrgits%2FSQL-Translator.git diff --git a/t/61translator_agnostic.t b/t/61translator_agnostic.t index f35abca..88cd06d 100644 --- a/t/61translator_agnostic.t +++ b/t/61translator_agnostic.t @@ -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", ); }