Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class.git] / t / lib / testinclude / DBICTestConfig.pm
CommitLineData
7b71391b 1package DBICTestConfig;
2use base 'DBIx::Class::Schema';
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;