More fixup for HoundCI. Fix up some small issues in docs.
This commit is contained in:
parent
435740b8a2
commit
a8f2977c6a
2 changed files with 8 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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…
Reference in a new issue