Commit 8d067414 authored by Douwe Maan's avatar Douwe Maan

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
parents e8e25a0f 5bc21694
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment