Warn-free test suite with later DBIC
[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 {
53de57ed 11 if (-d 't/sql') {
12 remove_tree('t/sql');
13 mkdir 't/sql';
14 }
15}
16
f3b5161e 17sub dbh {
18 DBI->connect('dbi:SQLite::memory:', undef, undef, { RaiseError => 1 })
19}
20
53de57ed 211;