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

integration_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3042fd15a7b1b552987184cadab45acb704db1fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Integration do
  let(:project_1) { create(:project) }
  let(:project_2) { create(:project) }
  let(:instance_integration) { create(:jira_service, :instance) }

  before do
    create(:jira_service, project: project_1, inherit_from_id: instance_integration.id)
    create(:jira_service, project: project_2, inherit_from_id: nil)
    create(:slack_service, project: project_1, inherit_from_id: nil)
  end

  describe '#with_custom_integration_for' do
    it 'returns projects with custom integrations' do
      expect(Project.with_custom_integration_for(instance_integration)).to contain_exactly(project_2)
    end
  end
end