Skip to content

Instantly share code, notes, and snippets.

@dpickett
Created October 16, 2008 20:32
Show Gist options
  • Save dpickett/17252 to your computer and use it in GitHub Desktop.
Save dpickett/17252 to your computer and use it in GitHub Desktop.
@message = Factory.build(:message)
@message.recipients << Factory(:user, :login => "recipients")
@message.save! #fail
user = Factory(:user)
@message = Factory(:message, :recipients => [User.find(:first)]) #great success
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment