X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Ffrom_subquery.t;h=9b340c55409ba5a0af86a24b566f4314ffcb8ef3;hb=f244a81505f81087d4bd9a435081aa40b5f32435;hp=8c777ea135c3e4ee8168f46f1de734a7011a21eb;hpb=af6aac2d51a435fa60151ac047e1559257fd4eba;p=dbsrgits%2FDBIx-Class.git diff --git a/t/from_subquery.t b/t/from_subquery.t index 8c777ea..9b340c5 100644 --- a/t/from_subquery.t +++ b/t/from_subquery.t @@ -3,17 +3,12 @@ use warnings FATAL => 'all'; 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');