Jess (castaway) ran into a bug today when using result_class and
related_resultset. A failing test has been checked into -current as
97result_class.t  it beats the hell out of me. I tried to walk through it,
but was unsuccessful. could someone please take a look at this? I'm too beat
for it today.

 my $cd_rc = $schema->resultset("CD")->result_class;
 my $artist_rs = $schema->resultset("Artist")
   ->search_rs({}, {result_class => "IWillExplode"});
 is($artist_rs->result_class, 'IWillExplode', 'Correct artist
result_class');
 my $cd_rs = $artist_rs->related_resultset('cds');
 is($cd_rs->result_class, $cd_rc, 'Correct cd result_class');  #this will
fail
_______________________________________________
List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class
Wiki: http://dbix-class.shadowcatsystems.co.uk/
IRC: irc.perl.org#dbix-class
SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/
Searchable Archive: http://www.mail-archive.com/[email protected]/

Reply via email to