summaryrefslogtreecommitdiff
path: root/spec/factories/timelogs.rb
blob: 056a8833c460b8e280b6bc2624966d6c823908cc (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