summaryrefslogtreecommitdiff
path: root/spec/support/shared_contexts/project_service_jira_context.rb
blob: 4ca5c99323a08c2615372794eb72ef7135ec4b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

RSpec.shared_context 'project service Jira context' do
  let(:url) { 'http://jira.example.com' }
  let(:test_url) { 'http://jira.example.com/rest/api/2/serverInfo' }

  def fill_form(disable: false)
    click_active_toggle if disable

    fill_in 'service_url', with: url
    fill_in 'service_username', with: 'username'
    fill_in 'service_password', with: 'password'
    fill_in 'service_jira_issue_transition_id', with: '25'
  end
end