branch pushed, removing
[dbsrgits/DBIx-Class.git] / t / 76select.t
index bee69e6..8c46a7e 100644 (file)
@@ -64,6 +64,9 @@ my $cds = $schema->resultset ('CD')->search ({}, { order_by => 'me.cdid'}); # ma
 cmp_ok ($cds->count, '>', 2, 'Initially populated with more than 2 CDs');
 
 my $table = $cds->result_source->name;
+
+$DB::single = 1;
+
 my $subsel = $cds->search ({}, {
     columns => [qw/cdid title/],
     from => \ "(SELECT cdid, title FROM $table LIMIT 2) me",