diff options
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/seeders/ci/runner/runner_fleet_pipeline_seeder_spec.rb | 3 | ||||
-rw-r--r-- | spec/lib/gitlab/url_builder_spec.rb | 22 |
2 files changed, 2 insertions, 23 deletions
diff --git a/spec/lib/gitlab/seeders/ci/runner/runner_fleet_pipeline_seeder_spec.rb b/spec/lib/gitlab/seeders/ci/runner/runner_fleet_pipeline_seeder_spec.rb index 2862bcc9719..a15dbccc80c 100644 --- a/spec/lib/gitlab/seeders/ci/runner/runner_fleet_pipeline_seeder_spec.rb +++ b/spec/lib/gitlab/seeders/ci/runner/runner_fleet_pipeline_seeder_spec.rb @@ -28,7 +28,8 @@ RSpec.describe ::Gitlab::Seeders::Ci::Runner::RunnerFleetPipelineSeeder, feature context 'with job_count specified' do let(:job_count) { 20 } - it 'creates expected jobs', :aggregate_failures do + it 'creates expected jobs', :aggregate_failures, + quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/394721' do expect { seeder.seed }.to change { Ci::Build.count }.by(job_count) .and change { Ci::Pipeline.count }.by(4) diff --git a/spec/lib/gitlab/url_builder_spec.rb b/spec/lib/gitlab/url_builder_spec.rb index 2e9a444bd24..08a25666ae9 100644 --- a/spec/lib/gitlab/url_builder_spec.rb +++ b/spec/lib/gitlab/url_builder_spec.rb @@ -227,27 +227,5 @@ RSpec.describe Gitlab::UrlBuilder do expect(subject.build(object, only_path: true)).to eq("/#{project.full_path}") end end - - context 'when use_iid_in_work_items_path feature flag is disabled' do - before do - stub_feature_flags(use_iid_in_work_items_path: false) - end - - context 'when a task issue is passed' do - it 'returns a path using the work item\'s ID and no query params' do - task = create(:issue, :task) - - expect(subject.build(task, only_path: true)).to eq("/#{task.project.full_path}/-/work_items/#{task.id}") - end - end - - context 'when a work item is passed' do - it 'returns a path using the work item\'s ID and no query params' do - work_item = create(:work_item) - - expect(subject.build(work_item, only_path: true)).to eq("/#{work_item.project.full_path}/-/work_items/#{work_item.id}") - end - end - end end end |