blob: 5d34acc635dea582b3a1c804cf6eb7c3264f55f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
# Read about factories at https://github.com/thoughtbot/factory_bot
FactoryBot.define do
factory :timelog do
time_spent { 3600 }
issue
user { issue.project.creator }
end
end
|