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

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

  def fill_form(disable: false)
    click_active_checkbox if disable

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