Debugging why sqlt deployment order of views is wrong.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / LoadTest / Result / Bar.pm
index 0712ac9..ed6a506 100644 (file)
@@ -1,8 +1,9 @@
-package LoadTest::Result::Bar;
+package # hide from PAUSE
+       LoadTest::Result::Bar;
 
 use strict;
 use warnings;
-use parent qw(LoadTest::Result::Foo);
+use parent 'LoadTest::Result::Foo';
 
 require LoadTest::Result::Mixin;
 
@@ -16,16 +17,16 @@ __PACKAGE__->add_columns(
   b => { data_type => 'integer' }
 );
 
-__PACKAGE__->belongs_to(
-  'b_thang',
-  'LoadTest::Result::JustATable',
-  { 'foreign.id' => 'self.b' },
-);
-
-__PACKAGE__->has_many(
-  'foos',
-  'LoadTest::Result::Foo',
-  { 'foreign.a' => 'self.id' }
-);
+#__PACKAGE__->belongs_to(
+  #'b_thang',
+  #'LoadTest::Result::JustATable',
+  #{ 'foreign.id' => 'self.b' },
+#);
+
+#__PACKAGE__->has_many(
+  #'foos',
+  #'LoadTest::Result::Foo',
+  #{ 'foreign.a' => 'self.id' }
+#);
 
 1;