a2718ebaff
Signed-off-by: Rémy Coutable <remy@rymai.me>
9 lines
187 B
Ruby
9 lines
187 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_bot
|
|
|
|
FactoryBot.define do
|
|
factory :timelog do
|
|
time_spent 3600
|
|
issue
|
|
user { issue.project.creator }
|
|
end
|
|
end
|