First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / MyFilm.pm
diff --git a/t/testlib/MyFilm.pm b/t/testlib/MyFilm.pm
deleted file mode 100644 (file)
index e0abf44..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package # hide from PAUSE 
-    MyFilm;
-
-BEGIN { unshift @INC, './t/testlib'; }
-use base 'MyBase';
-use MyStarLink;
-
-use strict;
-
-__PACKAGE__->set_table();
-__PACKAGE__->columns(All => qw/filmid title/);
-__PACKAGE__->has_many(_stars => 'MyStarLink');
-__PACKAGE__->columns(Stringify => 'title');
-
-sub _carp { }
-
-sub stars { map $_->star, shift->_stars }
-
-sub create_sql {
-       return qq{
-    filmid  TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
-    title   VARCHAR(255)
-  };
-}
-
-1;
-