Skip to content
Snippets Groups Projects
Commit a8f2977c authored by Sean Edge's avatar Sean Edge
Browse files

More fixup for HoundCI. Fix up some small issues in docs.

parent 435740b8
No related branches found
No related tags found
1 merge request!7014Add CreateTagService. Use new service to allow tag creation through API.
Loading
Loading
@@ -59,9 +59,9 @@ Parameters:
"message": "Initial commit",
"authored_date": "2012-05-28T04:42:42-07:00",
"author_name": "John Smith",
"author email": "john@example.com"
"author email": "john@example.com",
"committer_name": "Jack Smith",
"committed_date": "2012-05-28T04:42:42-07:00"
"committed_date": "2012-05-28T04:42:42-07:00",
"committer_email": "jack@example.com"
},
"protected": false
Loading
Loading
Loading
Loading
@@ -26,17 +26,18 @@ describe API::API, api: true do
describe 'POST /projects/:id/repository/tags' do
it 'should create a new tag' do
post api("/projects/#{project.id}/repository/tags", user),
tag_name: 'v1.0.0',
ref: '621491c677087aa243f165eab467bfdfbee00be1'
tag_name: 'v1.0.0',
ref: '621491c677087aa243f165eab467bfdfbee00be1'
 
response.status.should == 201
json_response.first['name'].should == 'v1.0.0'
json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1'
json_response['commit']['id'].should ==
'621491c677087aa243f165eab467bfdfbee00be1'
end
it 'should deny for user without push access' do
post api("/projects/#{project.id}/repository/tags", user2),
tag_name: 'v1.0.0',
ref: '621491c677087aa243f165eab467bfdfbee00be1'
tag_name: 'v1.0.0',
ref: '621491c677087aa243f165eab467bfdfbee00be1'
 
response.status.should == 403
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment