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

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

FactoryBot.define do
  factory :jira_connect_installation do
    sequence(:client_key) { |n| "atlassian-client-key-#{n}" }
    shared_secret { 'jrNarHaRYaumMvfV3UnYpwt8' }
    base_url { 'https://sample.atlassian.net' }
  end
end