Merge branch 'bvl-add-gitlab-shell-discover-spec' into 'master'

Add spec for `/api/internal/discover` without user

See merge request gitlab-org/gitlab-ce!25936
This commit is contained in:
Douwe Maan 2019-03-11 13:46:37 +00:00
commit 8d067414f5
1 changed files with 8 additions and 0 deletions

View File

@ -237,6 +237,14 @@ describe API::Internal do
expect(json_response['name']).to eq(user.name)
end
it 'responds successfully when a user is not found' do
get(api("/internal/discover"), params: { username: 'noone', secret_token: secret_token })
expect(response).to have_gitlab_http_status(200)
expect(response.body).to eq('null')
end
end
describe "GET /internal/authorized_keys" do