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

cohorts_controller_spec.rb « instance_statistics « controllers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 596d3c7abe5332f8390cd15f2087f49c13805130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

describe InstanceStatistics::CohortsController do
  let(:user) { create(:user) }

  before do
    sign_in(user)
  end

  it_behaves_like 'instance statistics availability'

  it 'renders a 404 when the usage ping is disabled' do
    stub_application_setting(usage_ping_enabled: false)

    get :index

    expect(response).to have_gitlab_http_status(:not_found)
  end
end