Skip to content
Snippets Groups Projects
Verified Commit d6db4517 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Add api test for creating tag with release info

parent 8f53094f
No related branches found
No related tags found
No related merge requests found
Loading
@@ -52,6 +52,19 @@ describe API::API, api: true do
Loading
@@ -52,6 +52,19 @@ describe API::API, api: true do
end end
end end
   
context 'lightweight tags with release notes' do
it 'should create a new tag' do
post api("/projects/#{project.id}/repository/tags", user),
tag_name: 'v7.0.1',
ref: 'master',
release_description: 'Wow'
expect(response.status).to eq(201)
expect(json_response['name']).to eq('v7.0.1')
expect(json_response['release']['description']).to eq('Wow')
end
end
context 'annotated tag' do context 'annotated tag' do
it 'should create a new annotated tag' do it 'should create a new annotated tag' do
# Identity must be set in .gitconfig to create annotated tag. # Identity must be set in .gitconfig to create annotated tag.
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