Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/label_links.rb')
-rw-r--r--spec/factories/label_links.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/factories/label_links.rb b/spec/factories/label_links.rb
deleted file mode 100644
index bd304b5db6b..00000000000
--- a/spec/factories/label_links.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# == 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