Skip to content
Snippets Groups Projects
Commit 6eae8f77 authored by ysksn's avatar ysksn Committed by Eugen Rochko
Browse files

Add spec for Admin::SuspentionsController#new (#9483)

parent 189a6b17
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,13 @@ describe Admin::SuspensionsController do
sign_in Fabricate(:user, admin: true), scope: :user
end
describe 'GET #new' do
it 'returns 200' do
get :new, params: { account_id: Fabricate(:account).id, report_id: Fabricate(:report).id }
expect(response).to have_http_status(200)
end
end
describe 'POST #create' do
it 'redirects to admin accounts page' do
account = Fabricate(:account, suspended: false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment