0
0
Fork 0

Fix POST /api/v1/admin/domain_allows returning 200 when no domain is specified (#24958)

This commit is contained in:
Daniel M Brasil 2023-05-22 08:44:49 -03:00 committed by GitHub
parent e328ab7e5a
commit ce8b5899ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -128,5 +128,13 @@ RSpec.describe Api::V1::Admin::DomainAllowsController do
expect(response).to have_http_status(422)
end
end
context 'when domain name is not specified' do
it 'returns http unprocessable entity' do
post :create
expect(response).to have_http_status(422)
end
end
end
end