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

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

require 'spec_helper'

RSpec.describe AuthorizedProjectUpdate::UserRefreshWithLowUrgencyWorker, feature_category: :system_access do
  it 'is labeled as low urgency' do
    expect(described_class.get_urgency).to eq(:low)
  end

  it_behaves_like "refreshes user's project authorizations"
end