summaryrefslogtreecommitdiff
path: root/spec/features/tags/developer_updates_tag_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/tags/developer_updates_tag_spec.rb')
-rw-r--r--spec/features/tags/developer_updates_tag_spec.rb54
1 files changed, 54 insertions, 0 deletions
diff --git a/spec/features/tags/developer_updates_tag_spec.rb b/spec/features/tags/developer_updates_tag_spec.rb
new file mode 100644
index 00000000000..1e11fc9e5d5
--- /dev/null
+++ b/spec/features/tags/developer_updates_tag_spec.rb
@@ -0,0 +1,54 @@
+require 'spec_helper'
+
+describe 'Developer updates tag' do
+ let(:user) { create(:user) }
+ let(:group) { create(:group) }
+ let(:project) { create(:project, :repository, namespace: group) }
+
+ before do
+ project.add_developer(user)
+ sign_in(user)
+ visit project_tags_path(project)
+ end
+
+ context 'from the tags list page' do
+ it 'updates the release notes' do
+ page.within(first('.content-list .controls')) do
+ click_link 'Edit release notes'
+ end
+
+ fill_in 'release_description', with: 'Awesome release notes'
+ click_button 'Save changes'
+
+ expect(current_path).to eq(
+ project_tag_path(project, 'v1.1.0'))
+ expect(page).to have_content 'v1.1.0'
+ expect(page).to have_content 'Awesome release notes'
+ end
+
+ it 'description has emoji autocomplete', :js do
+ page.within(first('.content-list .controls')) do
+ click_link 'Edit release notes'
+ end
+
+ find('#release_description').native.send_keys('')
+ fill_in 'release_description', with: ':'
+
+ expect(page).to have_selector('.atwho-view')
+ end
+ end
+
+ context 'from a specific tag page' do
+ it 'updates the release notes' do
+ 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(
+ project_tag_path(project, 'v1.1.0'))
+ expect(page).to have_content 'v1.1.0'
+ expect(page).to have_content 'Awesome release notes'
+ end
+ end
+end