Reverting a48693f42e - the test is a fat duplicate of t/prefetch/false_colvalues.t
[dbsrgits/DBIx-Class.git] / t / lib / PrefetchBug / LeftRight.pm
diff --git a/t/lib/PrefetchBug/LeftRight.pm b/t/lib/PrefetchBug/LeftRight.pm
deleted file mode 100644 (file)
index 8ac1362..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-package
-    PrefetchBug::LeftRight;
-
-use strict;
-use warnings;
-
-use base 'DBIx::Class::Core';
-
-__PACKAGE__->table('prefetchbug_left_right');
-__PACKAGE__->add_columns(
-    left_id => { data_type => 'integer' },
-    right_id => { data_type => 'integer' },
-    value => {});
-
-__PACKAGE__->set_primary_key('left_id', 'right_id');
-__PACKAGE__->belongs_to(left => 'PrefetchBug::Left', 'left_id');
-__PACKAGE__->belongs_to(
-    right => 'PrefetchBug::Right',
-    'right_id',
-#    {join_type => 'left'}
-);
-
-
-1;