debian-mirror-gitlab/spec/features/tags/master_updates_tag_spec.rb

54 lines
1.5 KiB
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
require 'spec_helper'
2018-11-18 11:00:15 +05:30
describe 'Maintainer updates tag' do
2016-06-02 11:05:42 +05:30
let(:user) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :repository, namespace: user.namespace) }
2016-06-02 11:05:42 +05:30
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2017-09-10 17:25:29 +05:30
sign_in(user)
visit project_tags_path(project)
2016-06-02 11:05:42 +05:30
end
context 'from the tags list page' do
2018-11-08 19:23:39 +05:30
it 'updates the release notes' do
page.within(first('.content-list .controls')) do
2016-06-02 11:05:42 +05:30
click_link 'Edit release notes'
end
fill_in 'release_description', with: 'Awesome release notes'
click_button 'Save changes'
expect(current_path).to eq(
2017-09-10 17:25:29 +05:30
project_tag_path(project, 'v1.1.0'))
2016-06-02 11:05:42 +05:30
expect(page).to have_content 'v1.1.0'
expect(page).to have_content 'Awesome release notes'
end
2017-09-10 17:25:29 +05:30
2018-11-08 19:23:39 +05:30
it 'description has emoji autocomplete', :js do
2017-09-10 17:25:29 +05:30
page.within(first('.content-list .controls')) do
click_link 'Edit release notes'
end
find('#release_description').native.send_keys('')
2018-11-08 19:23:39 +05:30
fill_in 'release_description', with: ':'
2017-09-10 17:25:29 +05:30
expect(page).to have_selector('.atwho-view')
end
2016-06-02 11:05:42 +05:30
end
context 'from a specific tag page' do
2018-11-08 19:23:39 +05:30
it 'updates the release notes' do
2016-06-02 11:05:42 +05:30
click_on 'v1.1.0'
click_link 'Edit release notes'
fill_in 'release_description', with: 'Awesome release notes'
click_button 'Save changes'
expect(current_path).to eq(
2017-09-10 17:25:29 +05:30
project_tag_path(project, 'v1.1.0'))
2016-06-02 11:05:42 +05:30
expect(page).to have_content 'v1.1.0'
expect(page).to have_content 'Awesome release notes'
end
end
end