Skip to content

Instantly share code, notes, and snippets.

@ralphos
Created April 20, 2012 04:16
Show Gist options
  • Save ralphos/2425978 to your computer and use it in GitHub Desktop.
Save ralphos/2425978 to your computer and use it in GitHub Desktop.
Factory.define :user do |u|
u.name "Ralph Wintle"
u.nickname "ralphwintle"
u.image "http://www.twitter.com/image_url"
u.points 0
end
Factory.define :room do |r|
r.title "Ruby on Rails"
r.description "A place to chat about Rails..."
end
Factory.define :message do |m|
m.post "This is my awesome post"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment