You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.describe 'Admin::Settings::Branding' do |
|
let(:admin_user) { Fabricate(:admin_user) } |
|
|
|
before { sign_in(admin_user) } |
|
|
|
it 'Saves changes to branding settings' do |
|
visit admin_settings_branding_path |
|
expect(page) |
|
.to have_title(I18n.t('admin.settings.branding.title')) |
|
|
|
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
|
|
|