Skip to content

Instantly share code, notes, and snippets.

@antono
Created February 22, 2010 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antono/311443 to your computer and use it in GitHub Desktop.
Save antono/311443 to your computer and use it in GitHub Desktop.
Factory.define :post, :parent => :discussion, :class => Post do |f|
f.title "This is project post"
f.body "Project will be build fast"
f.creator {|c| c.association(:user)}
f.blog {|b| b.association(:project)}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment