X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F76joins.t;h=862fef35a8a3e0a923103b837b61fc407195d973;hb=327368bcbbf179bbf95ee6a1dee701b3020400e8;hp=5706dfa53792b1b3beaab7286078289feb42678e;hpb=af6aac2d51a435fa60151ac047e1559257fd4eba;p=dbsrgits%2FDBIx-Class.git diff --git a/t/76joins.t b/t/76joins.t index 5706dfa..862fef3 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -4,22 +4,12 @@ use warnings; use Test::More; use lib qw(t/lib); use DBICTest; -use Data::Dumper; use DBIC::SqlMakerTest; 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; @@ -243,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;