Test suite now is fully parallelizable
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICDHTest.pm
1 package DBICDHTest;
2
3 use strict;
4 use warnings;
5
6 use File::Path 'remove_tree';
7 use DBI;
8
9 sub dbh {
10   DBI->connect('dbi:SQLite::memory:', undef, undef, { RaiseError => 1 })
11 }
12
13 1;