First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / MyStar.pm
diff --git a/t/testlib/MyStar.pm b/t/testlib/MyStar.pm
deleted file mode 100644 (file)
index f053d1c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package # hide from PAUSE 
-    MyStar;
-
-BEGIN { unshift @INC, './t/testlib'; }
-use base 'MyBase';
-
-use strict;
-
-__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;
-