summaryrefslogtreecommitdiff
path: root/spec/factories/timelogs.rb
blob: af34b0681e2e19783d4f48b4979a5090bb66b18c (plain)
1
2
3
4
5
6
7
8
9
# Read about factories at https://github.com/thoughtbot/factory_bot

FactoryBot.define do
  factory :timelog do
    time_spent 3600
    user
    issue
  end
end