diff options
author | Mark Fletcher <mark@gitlab.com> | 2017-04-05 16:22:28 +1000 |
---|---|---|
committer | Mark Fletcher <mark@gitlab.com> | 2017-04-05 16:22:28 +1000 |
commit | 4865a7ab92bd74f6376d50be4dd3b2e3937c5841 (patch) | |
tree | 84860e331b7c196b6a117503d072cc0a7d55ca23 /spec/requests | |
parent | ced322c5f6de61c30794140a08fa45b612474850 (diff) | |
download | gitlab-ce-4865a7ab92bd74f6376d50be4dd3b2e3937c5841.tar.gz |
Enable creation of deploy keys with write access via the API
* Documentation was incorrectly advertising the missing param
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/api/deploy_keys_spec.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/requests/api/deploy_keys_spec.rb b/spec/requests/api/deploy_keys_spec.rb index 4f4b18cf0e0..e1beac28dab 100644 --- a/spec/requests/api/deploy_keys_spec.rb +++ b/spec/requests/api/deploy_keys_spec.rb @@ -108,6 +108,15 @@ describe API::DeployKeys, api: true do expect(response).to have_http_status(201) end + + it 'accepts can_push parameter' do + key_attrs = attributes_for :write_access_key + + post api("/projects/#{project.id}/deploy_keys", admin), key_attrs + + expect(response).to have_http_status(201) + expect(json_response['can_push']).to eq(true) + end end describe 'DELETE /projects/:id/deploy_keys/:key_id' do |