6 lines
166 B
Ruby
6 lines
166 B
Ruby
Factory.define(:wiki_page) do |f|
|
|
f.creator {|x| x.association(:user)}
|
|
f.title {|x| Faker::Lorem.words.join(" ")}
|
|
f.body {Faker::Lorem.sentences.join(" ")}
|
|
end
|