Un-plan test and fix authorship
Peter Rabbitson [Tue, 18 Aug 2009 06:49:03 +0000 (06:49 +0000)]
lib/DBIx/Class/Storage/DBI/Pg.pm
t/72pg.t

index 10a82f5..9314396 100644 (file)
@@ -183,13 +183,9 @@ part of the on_connect_do option to connect(), for example:
                     },
                   );
 
-=head1 CONTRIBUTORS
+=head1 AUTHORS
 
-Robert Buels <rbuels@cpan.org>
-
-=head1 AUTHOR
-
-Marcus Ramberg <m.ramberg@cpan.org>
+See L<DBIx::Class/CONTRIBUTORS>
 
 =head1 LICENSE
 
index b1b8f50..b53916b 100644 (file)
--- 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) }