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

FactoryGirl.define do
  factory :timelog do
    time_spent 3600
    user
    association :trackable, factory: :issue
  end
end