X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frun%2F04db.tl;h=5208614fecdaccc6aff5a54171f97db6b970f0ba;hb=70350518bbb31e5ac22fb3cb73d3e17409fcd332;hp=4865d965779fc6a0e864a34137876e6a86ada2be;hpb=4b8dcc58874223164d4a379a5db4a9cb737d7c7a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/run/04db.tl b/t/run/04db.tl index 4865d96..5208614 100644 --- a/t/run/04db.tl +++ b/t/run/04db.tl @@ -1,6 +1,12 @@ -sub run_tests { -my $schema = shift; - +use strict; +use warnings; + +use Test::More; +use lib qw(t/lib); +use DBICTest; + +my $schema = DBICTest::init_schema(); + plan tests => 3; # add some rows inside a transaction and commit it @@ -48,6 +54,3 @@ my $test_type_info = { }; is_deeply($type_info, $test_type_info, 'columns_info_for - column data types'); -} - -1;