projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
A workable fix for the resultset multicol update/delete debacle - by default fallback...
[dbsrgits/DBIx-Class.git]
/
t
/
count
/
joined.t
1
use strict;
2
use warnings;
3
4
use Test::More;
5
6
use lib qw(t/lib);
7
8
use DBICTest;
9
10
plan tests => 1;
11
12
my $schema = DBICTest->init_schema();
13
14
{
15
my $cds = $schema->resultset("CD")->search({ cdid => 1 }, { join => { cd_to_producer => 'producer' } });
16
is($cds->count, 1, "extra joins do not explode single entity count");
17
}