Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / testinclude / DBICTestAdminInc.pm
index a6d1e0e..212d33d 100644 (file)
@@ -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;