croak instead of carp on double install
Arthur Axel 'fREW' Schmidt [Sat, 20 Mar 2010 22:27:10 +0000 (17:27 -0500)]
lib/DBIx/Class/DeploymentHandler.pm
t/02-instantiation.t

index 64c8d49..5deb9c6 100644 (file)
@@ -62,7 +62,7 @@ has sqltargs => ( # configuration
 );
 
 method install {
-  carp 'Install not possible as versions table already exists in database'
+  croak 'Install not possible as versions table already exists in database'
     if $self->version_storage_is_installed;
 
   my $ddl = $self->_deploy;
index 82acd10..9699644 100644 (file)
@@ -22,7 +22,7 @@ VERSION1: {
       upgrade_directory => $sql_dir,
       schema => $s,
       databases => 'SQLite',
-    sqltargs => { add_drop_table => 0 },
+      sqltargs => { add_drop_table => 0 },
    });
 
    ok($handler, 'DBIx::Class::DeploymentHandler w/1.0 instantiates correctly');
@@ -37,6 +37,9 @@ VERSION1: {
       })
    } 'schema not deployed';
    $handler->install;
+   dies_ok {
+     $handler->install;
+   } 'cannot install twice';
    lives_ok {
       $s->resultset('Foo')->create({
          bar => 'frew',