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
|
|
|
|
time_spent 3600
|
|
|
|
issue
|
2018-03-17 18:26:18 +05:30
|
|
|
user { issue.project.creator }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|