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

project_topics.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60f5357d129e6c46d19bb9d273ac7a6cc19b7f18 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :project_topic, class: 'Projects::ProjectTopic' do
    association :project, factory: :project
    association :topic, factory: :topic
  end
end