make sure merge bind
[dbsrgits/DBIx-Class.git] / t / count / 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 TODO: {
15   local $TODO = 'TODO until we figure out what we really want';
16   my $cds = $schema->resultset("CD")->search({ cdid => 1 }, { join => { cd_to_producer => 'producer' } });
17   is($cds->count, 1, "extra joins do not explode single entity count");
18 }