use coderef instead of run method
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICDHTest.pm
CommitLineData
02d58ac0 1package DBICDHTest;
2
3use strict;
4use warnings;
5
6use File::Path 'remove_tree';
fe3b6dff 7use Test::More;
8use Test::Exception;
02d58ac0 9
10sub ready {
11 unlink 'db.db' if -e 'db.db';
12 if (-d 't/sql') {
13 remove_tree('t/sql');
14 mkdir 't/sql';
15 }
16}
17
02d58ac0 181;