summaryrefslogtreecommitdiff
path: root/features/steps
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2015-12-09 11:30:21 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2015-12-09 11:30:21 -0200
commit9e5ac7285cc6b9b641d863457086b2e5292699e1 (patch)
tree53d86b8798e125e0b9361823321fe7513ea08c87 /features/steps
parent9bfd6c44e23754b6f699586f6a0cec2879e107e0 (diff)
downloadgitlab-ce-9e5ac7285cc6b9b641d863457086b2e5292699e1.tar.gz
Ensure notes are replaced on a merge request diff when they're updated
Diffstat (limited to 'features/steps')
-rw-r--r--features/steps/project/merge_requests.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/features/steps/project/merge_requests.rb b/features/steps/project/merge_requests.rb
index 822cf0ffe1c..74539d0b019 100644
--- a/features/steps/project/merge_requests.rb
+++ b/features/steps/project/merge_requests.rb
@@ -186,6 +186,31 @@ class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
leave_comment "Line is wrong"
end
+ step 'I change the comment "Line is wrong" to "Typo, please fix" on diff' do
+ page.within('.diff-file:nth-of-type(5) .note') do
+ find('.js-note-edit').click
+
+ page.within('.current-note-edit-form', visible: true) do
+ fill_in 'note_note', with: 'Typo, please fix'
+ click_button 'Save Comment'
+ end
+
+ expect(page).not_to have_button 'Save Comment', disabled: true, visible: true
+ end
+ end
+
+ step 'I should not see a diff comment saying "Line is wrong"' do
+ page.within('.diff-file:nth-of-type(5) .note') do
+ expect(page).not_to have_visible_content 'Line is wrong'
+ end
+ end
+
+ step 'I should see a diff comment saying "Typo, please fix"' do
+ page.within('.diff-file:nth-of-type(5) .note') do
+ expect(page).to have_visible_content 'Typo, please fix'
+ end
+ end
+
step 'I should see a discussion has started on diff' do
page.within(".notes .discussion") do
page.should have_content "#{current_user.name} started a discussion"