21 lines
703 B
Ruby
21 lines
703 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, class: 'Integrations::JiraTrackerData' do
|
|
integration factory: :jira_integration
|
|
end
|
|
|
|
factory :issue_tracker_data, class: 'Integrations::IssueTrackerData' do
|
|
integration
|
|
end
|
|
|
|
factory :open_project_tracker_data, class: 'Integrations::OpenProjectTrackerData' do
|
|
integration factory: :open_project_service
|
|
url { 'http://openproject.example.com'}
|
|
token { 'supersecret' }
|
|
project_identifier_code { 'PRJ-1' }
|
|
closed_status_id { '15' }
|
|
end
|
|
end
|