X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbind%2Fattribute.t;h=ca00c30d6db35d361a4e6e7e811f182277c07a97;hb=56166f36313355d502a6517bf3316252d92d375a;hp=c4f99c43168f896ea4cd9e2004d64e42a7dedd12;hpb=a109c954ad63eb85f81de4afd5444a44fae01575;p=dbsrgits%2FDBIx-Class.git diff --git a/t/bind/attribute.t b/t/bind/attribute.t index c4f99c4..ca00c30 100644 --- a/t/bind/attribute.t +++ b/t/bind/attribute.t @@ -9,13 +9,6 @@ use_ok('DBICTest'); my $schema = DBICTest->init_schema; -BEGIN { - eval "use DBD::SQLite"; - plan $@ - ? ( skip_all => 'needs DBD::SQLite for testing' ) - : ( tests => 13 ); -} - my $where_bind = { where => \'name like ?', bind => [ 'Cat%' ], @@ -122,3 +115,5 @@ TODO: { bind => [ 'Spoon%' ] }); is ( $rs->count, 1, '...cookbook + chained search with extra bind' ); } + +done_testing;