Fix non-sqlite tests
Matt S Trout [Fri, 30 Dec 2005 20:34:37 +0000 (20:34 +0000)]
t/run/11mysql.tl
t/run/12pg.tl
t/run/13oracle.tl

index bbc6503..791fc8c 100644 (file)
@@ -9,7 +9,7 @@ plan skip_all, 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
 
 plan tests => 4;
 
-DBICTest->class("Schema")->compose_connection('MySQLTest' => $dsn, $user, $pass);
+DBICTest::Schema->compose_connection('MySQLTest' => $dsn, $user, $pass);
 
 my $dbh = MySQLTest::Artist->storage->dbh;
 
index e79a687..9f8ce94 100644 (file)
@@ -9,7 +9,7 @@ plan skip_all, 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test'
 
 plan tests => 2;
 
-DBICTest->class("Schema")->compose_connection('PgTest' => $dsn, $user, $pass);
+DBICTest::Schema->compose_connection('PgTest' => $dsn, $user, $pass);
 
 my $dbh = PgTest::Artist->storage->dbh;
 
index 154d916..d524b96 100644 (file)
@@ -8,7 +8,7 @@ plan skip_all, 'Set $ENV{DBICTEST_ORA_DSN}, _USER and _PASS to run this test. '
 
 plan tests => 4;
 
-DBICTest->class("Schema")->compose_connection('OraTest' => $dsn, $user, $pass);
+DBICTest::Schema->compose_connection('OraTest' => $dsn, $user, $pass);
 
 my $dbh = OraTest::Artist->storage->dbh;