v0.001000
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / 04-preconnect.t
index 6260194..4e3a77b 100644 (file)
@@ -25,7 +25,7 @@ VERSION1: {
   ok($s, 'DBICVersion::Schema 1 instantiates correctly');
   ok !$s->storage->connected, 'creating schema did not connect';
   my $handler = DH->new({
-    upgrade_directory => $sql_dir,
+    script_directory => $sql_dir,
     schema => $s,
     databases => 'SQLite',
     sql_translator_args => { add_drop_table => 0 },
@@ -33,8 +33,8 @@ VERSION1: {
   ok !$s->storage->connected, 'creating handler did not connect';
   ok($handler, 'DBIx::Class::DeploymentHandler w/1 instantiates correctly');
 
-  mkpath('t/sql/SQLite/preinstall/1');
-  $handler->preinstall({ version => 1, storage_type => 'SQLite' });
+  mkpath('t/sql/SQLite/initialize/1');
+  $handler->initialize({ version => 1, storage_type => 'SQLite' });
   ok !$s->storage->connected, 'creating schema did not connect';
 }
 done_testing;