Documentation for _source and and _preprocess_schema
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / no-component-lib / DBICDHTest.pm
CommitLineData
53de57ed 1package DBICDHTest;
2
3use strict;
4use warnings;
5
6use File::Path 'remove_tree';
7use Test::More;
8use Test::Exception;
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
181;