First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / ActorAlias.pm
diff --git a/t/testlib/ActorAlias.pm b/t/testlib/ActorAlias.pm
deleted file mode 100644 (file)
index 90e3042..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package # hide from PAUSE \r
-    ActorAlias;\r
-\r
-BEGIN { unshift @INC, './t/testlib'; }\r
-\r
-use strict;\r
-use warnings;\r
-\r
-use base 'DBIx::Class::Test::SQLite';\r
-\r
-__PACKAGE__->set_table( 'ActorAlias' );\r
-\r
-__PACKAGE__->columns( Primary => 'id' );\r
-__PACKAGE__->columns( All     => qw/ actor alias / );\r
-__PACKAGE__->has_a( actor => 'Actor' );\r
-__PACKAGE__->has_a( alias => 'Actor' );\r
-\r
-sub create_sql {\r
-       return qq{\r
-               id    INTEGER PRIMARY KEY,\r
-               actor INTEGER,\r
-               alias INTEGER\r
-       }\r
-}\r
-\r
-1;\r
-\r