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

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