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