Stop shipping world writeable files in our tarball
[dbsrgits/DBIx-Class.git] / t / lib / testinclude / DBICTestConfig.pm
CommitLineData
7b71391b 1package DBICTestConfig;
27a701f9 2use base 'DBICTest::BaseSchema';
7b71391b 3
4sub connect {
5 my($self, @opt) = @_;
6 @opt == 4
7 and $opt[0] eq 'klaatu'
8 and $opt[1] eq 'barada'
9 and $opt[2] eq 'nikto'
10 and $opt[3]->{ignore_version}
11 and exit 71; # this is what the test will expect to see
12 exit 1;
13}
14
151;