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

low_urgency_cancel_redundant_pipelines_worker_spec.rb « ci « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da09a28b38477871de83dae66a68fd66c98c6a96 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::LowUrgencyCancelRedundantPipelinesWorker, feature_category: :continuous_integration do
  it 'is labeled as low urgency' do
    expect(described_class.get_urgency).to eq(:low)
  end
end