X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2Ftestinclude%2FDBICTestAdminInc.pm;h=212d33dc67a2f04b123b9fa4a1693fd0187ca43d;hb=4a233f3019d2baa4bf2abee0c873c74d5cdf3a11;hp=a6d1e0e47815e3c41d9f600f3a438a1cc04be770;hpb=099f10d17d95b08b12a9c88129c65b4bab0b60e2;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/testinclude/DBICTestAdminInc.pm b/t/lib/testinclude/DBICTestAdminInc.pm index a6d1e0e..212d33d 100644 --- a/t/lib/testinclude/DBICTestAdminInc.pm +++ b/t/lib/testinclude/DBICTestAdminInc.pm @@ -1,9 +1,10 @@ package DBICTestAdminInc; -use base 'DBIx::Class::Schema'; -our $loaded = 1; -sub connect { bless {}, __PACKAGE__ } +use warnings; +use strict; -sub deploy { exit 70 } # this is what the test will expect to see +use base 'DBICTest::BaseSchema'; + +sub connect { exit 70 } # this is what the test will expect to see 1;