debian-mirror-gitlab/spec/views/admin/application_settings/network.html.haml_spec.rb
2023-05-27 22:25:52 +05:30

33 lines
1 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'admin/application_settings/network.html.haml', feature_category: :projects do
let_it_be(:admin) { build_stubbed(:admin) }
let_it_be(:application_setting) { build(:application_setting) }
before do
assign(:application_setting, application_setting)
allow(view).to receive(:current_user) { admin }
end
context 'for Projects API rate limit' do
it 'renders the `projects_api_rate_limit_unauthenticated` field' do
render
expect(rendered).to have_field('application_setting_projects_api_rate_limit_unauthenticated')
end
context 'when the feature flag `rate_limit_for_unauthenticated_projects_api_access` is turned off' do
before do
stub_feature_flags(rate_limit_for_unauthenticated_projects_api_access: false)
end
it 'does not render the `projects_api_rate_limit_unauthenticated` field' do
render
expect(rendered).not_to have_field('application_setting_projects_api_rate_limit_unauthenticated')
end
end
end
end