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

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

require 'spec_helper'

RSpec.describe 'circuitbox', feature_category: :shared do
  it 'configures Circuitbox' do
    expect(Circuitbox.default_circuit_store).to be_a(Gitlab::CircuitBreaker::Store)
    expect(Circuitbox.default_notifier).to be_a(Gitlab::CircuitBreaker::Notifier)
  end
end