Files
gitlabhq/spec/factories/label_links.rb
T
2014-08-25 12:25:02 +03:00

21 lines
402 B
Ruby

# == 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