Browse Source

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

pull/4/head
ysksn 5 years ago
committed by Eugen Rochko
parent
commit
6eae8f77af
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      spec/controllers/admin/suspensions_controller_spec.rb

+ 7
- 0
spec/controllers/admin/suspensions_controller_spec.rb View File

@ -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)

Loading…
Cancel
Save