First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / testlib / Order.pm
diff --git a/t/testlib/Order.pm b/t/testlib/Order.pm
deleted file mode 100644 (file)
index 009e10e..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package # hide from PAUSE 
-    Order;
-
-BEGIN { unshift @INC, './t/testlib'; }
-
-use strict;
-use base 'DBIx::Class::Test::SQLite';
-
-__PACKAGE__->set_table('orders');
-__PACKAGE__->table_alias('orders');
-__PACKAGE__->columns(Primary => 'film');
-__PACKAGE__->columns(Others  => qw/orders/);
-
-sub create_sql {
-       return qq{
-               film     VARCHAR(255),
-               orders   INTEGER
-       };
-}
-
-1;
-