First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / Director.pm
diff --git a/t/testlib/Director.pm b/t/testlib/Director.pm
deleted file mode 100644 (file)
index b19a44a..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package # hide from PAUSE 
-    Director;
-
-BEGIN { unshift @INC, './t/testlib'; }
-
-use strict;
-use base 'DBIx::Class::Test::SQLite';
-
-__PACKAGE__->set_table('Directors');
-__PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);
-
-sub create_sql {
-       return qq{
-                       name                    VARCHAR(80),
-                       birthday                INTEGER,
-                       isinsane                INTEGER
-       };
-}
-
-1;
-