summaryrefslogtreecommitdiff
path: root/spec/factories/label_links.rb
blob: bd304b5db6b5214f282e50ff8def59963ce6a212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# == Schema Information
#
# Table name: label_links
#
#  id          :integer          not null, primary key
#  label_id    :integer
#  target_id   :integer
#  target_type :string(255)
#  created_at  :datetime
#  updated_at  :datetime
#

# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :label_link do
    label
    target factory: :issue
  end
end