From: Matt S Trout Date: Sun, 11 Sep 2005 19:21:01 +0000 (+0000) Subject: Corrected test plan for t/11mysql.t X-Git-Tag: v0.03001~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5aeea5bef063e3a2210f0e16986406915899b836;p=dbsrgits%2FDBIx-Class.git Corrected test plan for t/11mysql.t --- diff --git a/t/11mysql.t b/t/11mysql.t index 45e0f51..3ec842c 100644 --- a/t/11mysql.t +++ b/t/11mysql.t @@ -10,7 +10,7 @@ my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/}; plan skip_all, 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test' unless ($dsn && $user); -plan tests => 1; +plan tests => 4; DBICTest::Schema->compose_connection('MySQLTest' => $dsn, $user, $pass);