Reverting a48693f42e - the test is a fat duplicate of t/prefetch/false_colvalues.t
[dbsrgits/DBIx-Class.git] / t / lib / PrefetchBug / Right.pm
diff --git a/t/lib/PrefetchBug/Right.pm b/t/lib/PrefetchBug/Right.pm
deleted file mode 100644 (file)
index c99dea7..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package
-    PrefetchBug::Right;
-
-use strict;
-use warnings;
-
-use base 'DBIx::Class::Core';
-
-__PACKAGE__->table('prefetchbug_right');
-__PACKAGE__->add_columns(qw/ id name category description propagates locked/);
-__PACKAGE__->set_primary_key('id');
-
-__PACKAGE__->has_many('prefetch_leftright', 'PrefetchBug::LeftRight', 'right_id');
-1;