debian-mirror-gitlab/spec/factories/services_data.rb
2021-03-11 19:13:27 +05:30

22 lines
505 B
Ruby

# frozen_string_literal: true
# These factories should not be called directly unless we are testing a _tracker_data model.
# The factories are used when creating integrations.
FactoryBot.define do
factory :jira_tracker_data do
service
end
factory :issue_tracker_data do
service
end
factory :open_project_tracker_data do
service
url { 'http://openproject.example.com'}
token { 'supersecret' }
project_identifier_code { 'PRJ-1' }
closed_status_id { '15' }
end
end