First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class-Historic.git] / t / cdbi / testlib / ActorAlias.pm
similarity index 86%
rename from t/testlib/ActorAlias.pm
rename to t/cdbi/testlib/ActorAlias.pm
index 90e3042..ba38551 100644 (file)
@@ -1,27 +1,25 @@
-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
+package # hide from PAUSE 
+    ActorAlias;
+
+use strict;
+use warnings;
+
+use base 'DBIx::Class::Test::SQLite';
+
+__PACKAGE__->set_table( 'ActorAlias' );
+
+__PACKAGE__->columns( Primary => 'id' );
+__PACKAGE__->columns( All     => qw/ actor alias / );
+__PACKAGE__->has_a( actor => 'Actor' );
+__PACKAGE__->has_a( alias => 'Actor' );
+
+sub create_sql {
+       return qq{
+               id    INTEGER PRIMARY KEY,
+               actor INTEGER,
+               alias INTEGER
+       }
+}
+
+1;
+