Convert admin/settings
controller specs to system specs (#31548)
This commit is contained in:
parent
ef4920c6c9
commit
928390c2ba
14 changed files with 170 additions and 162 deletions
26
spec/system/admin/settings/registrations_spec.rb
Normal file
26
spec/system/admin/settings/registrations_spec.rb
Normal file
|
@ -0,0 +1,26 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe 'Admin::Settings::Registrations' do
|
||||
it 'Saves changes to registrations settings' do
|
||||
sign_in admin_user
|
||||
visit admin_settings_registrations_path
|
||||
|
||||
select open_mode_option,
|
||||
from: registrations_mode_field
|
||||
|
||||
click_on submit_button
|
||||
|
||||
expect(page)
|
||||
.to have_content(success_message)
|
||||
end
|
||||
|
||||
def open_mode_option
|
||||
I18n.t('admin.settings.registrations_mode.modes.open')
|
||||
end
|
||||
|
||||
def registrations_mode_field
|
||||
form_label 'form_admin_settings.registrations_mode'
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue