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
37
spec/system/admin/settings/branding_spec.rb
Normal file
37
spec/system/admin/settings/branding_spec.rb
Normal file
|
@ -0,0 +1,37 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe 'Admin::Settings::Branding' do
|
||||
it 'Saves changes to branding settings' do
|
||||
sign_in admin_user
|
||||
visit admin_settings_branding_path
|
||||
|
||||
fill_in short_description_field,
|
||||
with: 'new key value'
|
||||
|
||||
fill_in site_contact_email_field,
|
||||
with: User.last.email
|
||||
|
||||
fill_in site_contact_username_field,
|
||||
with: Account.last.username
|
||||
|
||||
expect { click_on submit_button }
|
||||
.to change(Setting, :site_short_description).to('new key value')
|
||||
|
||||
expect(page)
|
||||
.to have_content(success_message)
|
||||
end
|
||||
|
||||
def short_description_field
|
||||
form_label 'form_admin_settings.site_short_description'
|
||||
end
|
||||
|
||||
def site_contact_email_field
|
||||
form_label 'form_admin_settings.site_contact_email'
|
||||
end
|
||||
|
||||
def site_contact_username_field
|
||||
form_label 'form_admin_settings.site_contact_username'
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue