X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F76select.t;fp=t%2F76select.t;h=9d09380bcf7158c7863304767044a5d25c2cfe1a;hb=b74b15b066a19f07b575883abd397ea4d3b045db;hp=81ecf0d9492b256335206f0fe8447f367da839e1;hpb=df604e83d5005e19e31f3fbd02e62ee30359fdf9;p=dbsrgits%2FDBIx-Class.git diff --git a/t/76select.t b/t/76select.t index 81ecf0d..9d09380 100644 --- a/t/76select.t +++ b/t/76select.t @@ -60,6 +60,7 @@ my $subsel = $cds->search ({}, { is ($subsel->count, 2, 'Subselect correctly limited the rs to 2 cds'); is ($subsel->next->title, $cds->next->title, 'First CD title match'); is ($subsel->next->title, $cds->next->title, 'Second CD title match'); +$cds->reset; is($schema->resultset('CD')->current_source_alias, "me", '$rs->current_source_alias returns "me"');