These files are not used by anything - remnants from the distant ea2e61bf
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / MyStar.pm
diff --git a/t/cdbi/testlib/MyStar.pm b/t/cdbi/testlib/MyStar.pm
deleted file mode 100644 (file)
index 100fbf4..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package # hide from PAUSE
-    MyStar;
-
-use warnings;
-use strict;
-
-use base 'MyBase';
-
-__PACKAGE__->set_table();
-__PACKAGE__->columns(All => qw/starid name/);
-__PACKAGE__->has_many(films => [ MyStarLink => 'film' ]);
-
-# sub films { map $_->film, shift->_films }
-
-sub create_sql {
-  return qq{
-    starid  TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
-    name   VARCHAR(255)
-  };
-}
-
-1;
-