switch to Path::Class for fewer mistakes
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICDHTest.pm
1 package DBICDHTest;
2
3 use strict;
4 use warnings;
5
6 use DBI;
7
8 sub dbh {
9   DBI->connect('dbi:SQLite::memory:', undef, undef, { RaiseError => 1 })
10 }
11
12 1;