Rework tutorial
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICDHTest.pm
index 6b76475..eddd418 100644 (file)
@@ -4,14 +4,14 @@ use strict;
 use warnings;
 
 use File::Path 'remove_tree';
+use Test::More;
+use Test::Exception;
 
 sub ready {
-   unlink 'db.db' if -e 'db.db';
    if (-d 't/sql') {
      remove_tree('t/sql');
      mkdir 't/sql';
    }
 }
 
-
 1;