This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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..." |
NewerOlder