lib expects a list, not an arrayref
[dbsrgits/DBIx-Class.git] / t / lib / testinclude / DBICTestAdminInc.pm
index a6d1e0e..cf7f6f9 100644 (file)
@@ -1,9 +1,6 @@
 package DBICTestAdminInc;
 use base 'DBIx::Class::Schema';
 
-our $loaded = 1;
-sub connect { bless {}, __PACKAGE__ }
-
-sub deploy { exit 70 }  # this is what the test will expect to see
+sub connect { exit 70 } # this is what the test will expect to see
 
 1;