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: bd16eeb4712c4775df5fa69e7fa42896b5d20ef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AuthorizedProjectUpdate::UserRefreshWithLowUrgencyWorker 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