2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2017-08-17 22:00:37 +05:30
|
|
|
factory :timelog do
|
2019-12-21 20:55:43 +05:30
|
|
|
time_spent { 3600 }
|
2017-08-17 22:00:37 +05:30
|
|
|
issue
|
2018-03-17 18:26:18 +05:30
|
|
|
user { issue.project.creator }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|