First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / MyStarLink.pm
diff --git a/t/testlib/MyStarLink.pm b/t/testlib/MyStarLink.pm
deleted file mode 100644 (file)
index 74a835c..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-package # hide from PAUSE 
-    MyStarLink;
-
-BEGIN { unshift @INC, './t/testlib'; }
-use base 'MyBase';
-
-use strict;
-
-__PACKAGE__->set_table();
-__PACKAGE__->columns(All => qw/linkid film star/);
-__PACKAGE__->has_a(film  => 'MyFilm');
-__PACKAGE__->has_a(star  => 'MyStar');
-
-sub create_sql {
-       return qq{
-    linkid  TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
-    film    TINYINT NOT NULL,
-    star    TINYINT NOT NULL
-  };
-}
-
-1;
-