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

admin_users.rb « fixtures « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f068ada53e1633356ce705885a51f5f52c7ebba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Admin::UsersController, '(JavaScript fixtures)', type: :controller do
  include StubENV
  include JavaScriptFixturesHelpers

  let(:admin) { create(:admin) }

  before do
    stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
    sign_in(admin)
  end

  render_views

  before(:all) do
    clean_frontend_fixtures('admin/users')
  end

  it 'admin/users/new_with_internal_user_regex.html' do
    stub_application_setting(user_default_external: true)
    stub_application_setting(user_default_internal_regex: '^(?:(?!\.ext@).)*$\r?')

    get :new

    expect(response).to be_successful
  end
end