X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F76joins.t;h=88749b432c1413f0a08f8f6a38268659738af40e;hb=3d98c75e2c45cbd5ddd995cbeb48810f6ad7e1ca;hp=ba87a0a04ea1b7251ecb9e93a497ce006dd5443f;hpb=bfa46eb523fff8ece9b37a48d17b90510f1c8c52;p=dbsrgits%2FDBIx-Class.git diff --git a/t/76joins.t b/t/76joins.t index ba87a0a..88749b4 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -10,17 +10,8 @@ my $schema = DBICTest->init_schema(); my $orig_debug = $schema->storage->debug; -use IO::File; - -BEGIN { - eval "use DBD::SQLite"; - plan $@ - ? ( skip_all => 'needs DBD::SQLite for testing' ) - : ( tests => 33 ); -} - # test the abstract join => SQL generator -my $sa = new DBIx::Class::SQLAHacks; +my $sa = new DBIx::Class::SQLMaker; my @j = ( { child => 'person' }, @@ -242,3 +233,5 @@ is($rs->first->name, 'We Are Goth', 'Correct record returned'); is(cd_count(), 5, '5 rows in table cd'); is(tk_count(), 3, '3 rows in table twokeys'); } + +done_testing;