mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
7 lines
114 B
Ruby
7 lines
114 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :post do
|
||
|
sequence(:text) { |n| "Post Body #{n}" }
|
||
|
topic
|
||
|
user
|
||
|
end
|
||
|
end
|