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=a6543cfa5769989102af82b5308e23a4ebd3d24d;hp=81ecf0d9492b256335206f0fe8447f367da839e1;hpb=7154ff351df7c3dad11339bfdb739346cff194e3;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"');