2020-06-02 08:08:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2021-05-12 08:10:24 -04:00
|
|
|
RSpec.describe HasIntegrations do
|
2020-10-06 20:08:24 -04:00
|
|
|
let_it_be(:project_1) { create(:project) }
|
|
|
|
let_it_be(:project_2) { create(:project) }
|
|
|
|
let_it_be(:project_3) { create(:project) }
|
2021-04-14 11:09:04 -04:00
|
|
|
let_it_be(:project_4) { create(:project) }
|
2021-06-18 11:10:16 -04:00
|
|
|
let_it_be(:instance_integration) { create(:jira_integration, :instance) }
|
2020-06-02 08:08:33 -04:00
|
|
|
|
|
|
|
before do
|
2021-06-18 11:10:16 -04:00
|
|
|
create(:jira_integration, project: project_1, inherit_from_id: instance_integration.id)
|
|
|
|
create(:jira_integration, project: project_2, inherit_from_id: nil)
|
|
|
|
create(:jira_integration, group: create(:group), project: nil, inherit_from_id: nil)
|
|
|
|
create(:jira_integration, project: project_3, inherit_from_id: nil)
|
|
|
|
create(:integrations_slack, project: project_4, inherit_from_id: nil)
|
2020-06-02 08:08:33 -04:00
|
|
|
end
|
|
|
|
|
2020-09-29 11:10:08 -04:00
|
|
|
describe '.without_integration' do
|
|
|
|
it 'returns projects without integration' do
|
2021-04-14 11:09:04 -04:00
|
|
|
expect(Project.without_integration(instance_integration)).to contain_exactly(project_4)
|
2020-06-23 14:09:28 -04:00
|
|
|
end
|
|
|
|
end
|
2020-06-02 08:08:33 -04:00
|
|
|
end
|