First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / OtherFilm.pm
diff --git a/t/testlib/OtherFilm.pm b/t/testlib/OtherFilm.pm
deleted file mode 100644 (file)
index 5d97101..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package # hide from PAUSE 
-    OtherFilm;
-
-use strict;
-use base 'Film';
-
-__PACKAGE__->set_table('Different_Film');
-
-sub create_sql {
-       return qq{
-               title                   VARCHAR(255),
-               director                VARCHAR(80),
-               codirector              VARCHAR(80),
-               rating                  CHAR(5),
-               numexplodingsheep       INTEGER,
-               hasvomit                CHAR(1)
-       };
-}
-
-1;
-