debian-mirror-gitlab/spec/factories/timelogs.rb

10 lines
187 B
Ruby
Raw Normal View History

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