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
|
|
|
|
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
|