0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-02-19 10:31:36 +00:00
ensl.org/spec/factories/post.rb
Chris Blanchard efc75736dd Style fix
2015-08-20 16:35:25 +01:00

7 lines
115 B
Ruby

FactoryGirl.define do
factory :post do
sequence(:text) { |n| "Post Body #{n}" }
topic
user
end
end