mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 08:48:06 +01:00
22 lines
391 B
Ruby
22 lines
391 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
describe 'Admin::Settings::Discovery' do
|
||
|
it 'Saves changes to discovery settings' do
|
||
|
sign_in admin_user
|
||
|
visit admin_settings_discovery_path
|
||
|
|
||
|
check trends_box
|
||
|
|
||
|
click_on submit_button
|
||
|
|
||
|
expect(page)
|
||
|
.to have_content(success_message)
|
||
|
end
|
||
|
|
||
|
def trends_box
|
||
|
form_label 'form_admin_settings.trends'
|
||
|
end
|
||
|
end
|