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

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

require 'spec_helper'

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