From: Peter Rabbitson Date: Tue, 18 Aug 2009 06:49:03 +0000 (+0000) Subject: Un-plan test and fix authorship X-Git-Tag: v0.08109~2^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7ff926e6b050853a010485c586623cfc2cab2be6;p=dbsrgits%2FDBIx-Class.git Un-plan test and fix authorship --- diff --git a/lib/DBIx/Class/Storage/DBI/Pg.pm b/lib/DBIx/Class/Storage/DBI/Pg.pm index 10a82f5..9314396 100644 --- a/lib/DBIx/Class/Storage/DBI/Pg.pm +++ b/lib/DBIx/Class/Storage/DBI/Pg.pm @@ -183,13 +183,9 @@ part of the on_connect_do option to connect(), for example: }, ); -=head1 CONTRIBUTORS +=head1 AUTHORS -Robert Buels - -=head1 AUTHOR - -Marcus Ramberg +See L =head1 LICENSE diff --git a/t/72pg.t b/t/72pg.t index b1b8f50..b53916b 100644 --- a/t/72pg.t +++ b/t/72pg.t @@ -49,9 +49,6 @@ plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test '. ' as well as following schemas: \'testschema\',\'anothertestschema\'!)' unless ($dsn && $user); - -plan tests => 45; - DBICTest::Schema->load_classes( 'Casecheck', 'ArrayTest' ); my $schema = DBICTest::Schema->connect($dsn, $user, $pass,); @@ -332,4 +329,6 @@ sub _cleanup { } } +done_testing; + END { _cleanup($dbh) }