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

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

require 'spec_helper'

RSpec.describe InProductGuidanceEnvironmentsWebideExperiment, :experiment do
  subject { described_class.new(project: project) }

  let(:project) { create(:project, :repository) }

  before do
    stub_experiments(in_product_guidance_environments_webide: :candidate)
  end

  it 'excludes projects with environments' do
    create(:environment, project: project)
    expect(subject).to exclude(project: project)
  end

  it 'does not exlude projects without environments' do
    expect(subject).not_to exclude(project: project)
  end
end