Warn-free test suite with later DBIC
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICDHTest.pm
CommitLineData
02d58ac0 1package DBICDHTest;
2
3use strict;
4use warnings;
5
6use File::Path 'remove_tree';
f3b5161e 7use DBI;
02d58ac0 8
9sub ready {
02d58ac0 10 if (-d 't/sql') {
11 remove_tree('t/sql');
12 mkdir 't/sql';
13 }
14}
15
f3b5161e 16sub dbh {
17 DBI->connect('dbi:SQLite::memory:', undef, undef, { RaiseError => 1 })
18}
19
02d58ac0 201;