more and more todo
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICDHTest.pm
CommitLineData
02d58ac0 1package DBICDHTest;
2
3use strict;
4use warnings;
5
6use File::Path 'remove_tree';
7
8sub ready {
9 unlink 'db.db' if -e 'db.db';
10 if (-d 't/sql') {
11 remove_tree('t/sql');
12 mkdir 't/sql';
13 }
14}
15
16
171;