First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherFilm.pm
diff --git a/t/cdbi/testlib/OtherFilm.pm b/t/cdbi/testlib/OtherFilm.pm
new file mode 100644 (file)
index 0000000..5d97101
--- /dev/null
@@ -0,0 +1,21 @@
+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;
+