Convert admin/account_actions
spec controller->system (#34207)
This commit is contained in:
parent
ffc568589c
commit
539a06f189
2 changed files with 29 additions and 35 deletions
29
spec/system/admin/account_actions_spec.rb
Normal file
29
spec/system/admin/account_actions_spec.rb
Normal file
|
@ -0,0 +1,29 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Admin Account Actions' do
|
||||
let(:user) { Fabricate(:admin_user) }
|
||||
|
||||
before { sign_in user }
|
||||
|
||||
describe 'Creating a new account action on an account' do
|
||||
let(:account) { Fabricate(:account) }
|
||||
|
||||
it 'creates the action and redirects to the account page' do
|
||||
visit new_admin_account_action_path(account_id: account.id)
|
||||
expect(page)
|
||||
.to have_title(I18n.t('admin.account_actions.title', acct: account.pretty_acct))
|
||||
|
||||
choose(option: 'silence')
|
||||
expect { submit_form }
|
||||
.to change { account.strikes.count }.by(1)
|
||||
expect(page)
|
||||
.to have_title(account.pretty_acct)
|
||||
end
|
||||
|
||||
def submit_form
|
||||
click_on I18n.t('admin.account_actions.action')
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue