From: Mark Addison Date: Thu, 7 Aug 2003 15:27:54 +0000 (+0000) Subject: D'oh! Fixed comment typo that chaged the meaning of the comment. X-Git-Tag: v0.04~350 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0da6f155bf764460f8effe6b66eba64c565f6a32;p=dbsrgits%2FSQL-Translator.git D'oh! Fixed comment typo that chaged the meaning of the comment. --- diff --git a/t/18ttschema-producer.t b/t/18ttschema-producer.t index 5a927ed..53e6457 100644 --- a/t/18ttschema-producer.t +++ b/t/18ttschema-producer.t @@ -45,12 +45,12 @@ $obj = SQL::Translator->new( }, ); my $out; -lives_ok { $out = $obj->translate; } "Produced template"; -ok $out ne "" ,"Output has some content"; +lives_ok { $out = $obj->translate; } "Translate ran"; +ok $out ne "" ,"Produced something!"; local $/ = undef; # slurp eq_or_diff $out, ,"Output looks right"; -# I'm sure if this diff is the best test, it is probaly too sensitive. But it -# at least it will blow up if anything changes! +# I'm not sure if this diff is the best test, it is probaly too sensitive. But +# it at least it will blow up if anything changes! print $out if DEBUG; #print "Debug:", Dumper($obj) if DEBUG;