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

This commit is contained in:
Sean Edge 2014-05-26 12:32:52 -04:00
parent 435740b8a2
commit a8f2977c6a
2 changed files with 8 additions and 7 deletions

View file

@ -59,9 +59,9 @@ Parameters:
"message": "Initial commit", "message": "Initial commit",
"authored_date": "2012-05-28T04:42:42-07:00", "authored_date": "2012-05-28T04:42:42-07:00",
"author_name": "John Smith", "author_name": "John Smith",
"author email": "john@example.com" "author email": "john@example.com",
"committer_name": "Jack Smith", "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" "committer_email": "jack@example.com"
}, },
"protected": false "protected": false

View file

@ -26,17 +26,18 @@ describe API::API, api: true do
describe 'POST /projects/:id/repository/tags' do describe 'POST /projects/:id/repository/tags' do
it 'should create a new tag' do it 'should create a new tag' do
post api("/projects/#{project.id}/repository/tags", user), post api("/projects/#{project.id}/repository/tags", user),
tag_name: 'v1.0.0', tag_name: 'v1.0.0',
ref: '621491c677087aa243f165eab467bfdfbee00be1' ref: '621491c677087aa243f165eab467bfdfbee00be1'
response.status.should == 201 response.status.should == 201
json_response.first['name'].should == 'v1.0.0' json_response.first['name'].should == 'v1.0.0'
json_response['commit']['id'].should == '621491c677087aa243f165eab467bfdfbee00be1' json_response['commit']['id'].should ==
'621491c677087aa243f165eab467bfdfbee00be1'
end end
it 'should deny for user without push access' do it 'should deny for user without push access' do
post api("/projects/#{project.id}/repository/tags", user2), post api("/projects/#{project.id}/repository/tags", user2),
tag_name: 'v1.0.0', tag_name: 'v1.0.0',
ref: '621491c677087aa243f165eab467bfdfbee00be1' ref: '621491c677087aa243f165eab467bfdfbee00be1'
response.status.should == 403 response.status.should == 403
end end