Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. my $artist = Artist->new_result({
  2. name => "John",
  3. artist_cd_rs => [
  4. {cd => {title=>"one"}},
  5. {cd => {title=>"two"}},
  6. ],
  7. });
  8.  
  9. ok $artist->custom_method_on_resultsourc;
  10.  
  11.  
  12. $artist->artist_cd_rs->first->cd->title; # !!! This explodes
  13.  
  14. ok $artist->insert_or_update;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement