vereto-api/spec/factories/todos.rb
2018-02-16 11:36:18 +00:00

7 lines
No EOL
152 B
Ruby

# spec/factories/todos.rb
FactoryGirl.define do
factory :todo do
title { Faker::Lorem.word }
created_by { Faker::Number.number(10) }
end
end