These files are not used by anything - remnants from the distant ea2e61bf
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherFilm.pm
diff --git a/t/cdbi/testlib/OtherFilm.pm b/t/cdbi/testlib/OtherFilm.pm
deleted file mode 100644 (file)
index a0afdd8..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package # hide from PAUSE
-    OtherFilm;
-
-use warnings;
-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;
-