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

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

FactoryBot.define do
  factory :jira_connect_subscription do
    association :installation, factory: :jira_connect_installation
    association :namespace, factory: :group
  end
end