X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Ffrom_subquery.t;h=646fa6e36b6c79891929836c3b3e2e3748931e9d;hb=ab7e74aa35788fa25e0e98245917c7f9f5e9318c;hp=8c777ea135c3e4ee8168f46f1de734a7011a21eb;hpb=af6aac2d51a435fa60151ac047e1559257fd4eba;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/from_subquery.t b/t/from_subquery.t index 8c777ea..646fa6e 100644 --- a/t/from_subquery.t +++ b/t/from_subquery.t @@ -1,19 +1,14 @@ use strict; -use warnings FATAL => 'all'; +use warnings; use Test::More; -BEGIN { - eval "use SQL::Abstract 1.49"; - plan $@ - ? ( skip_all => "Needs SQLA 1.49+" ) - : ( tests => 8 ); -} - use lib qw(t/lib); use DBICTest; use DBIC::SqlMakerTest; +plan tests => 8; + my $schema = DBICTest->init_schema(); my $art_rs = $schema->resultset('Artist'); my $cdrs = $schema->resultset('CD');