2019-07-25 01:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
2016-12-23 00:44:02 -05:00
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2016-12-23 00:44:02 -05:00
|
|
|
factory :timelog do
|
2019-10-01 20:06:26 -04:00
|
|
|
time_spent { 3600 }
|
2017-01-25 20:16:09 -05:00
|
|
|
issue
|
2017-08-04 13:14:04 -04:00
|
|
|
user { issue.project.creator }
|
2016-12-23 00:44:02 -05:00
|
|
|
end
|
|
|
|
end
|