summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/quick_actions/issuable/shrug_quick_action_shared_examples.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/quick_actions/issuable/shrug_quick_action_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/quick_actions/issuable/shrug_quick_action_shared_examples.rb60
1 files changed, 0 insertions, 60 deletions
diff --git a/spec/support/shared_examples/quick_actions/issuable/shrug_quick_action_shared_examples.rb b/spec/support/shared_examples/quick_actions/issuable/shrug_quick_action_shared_examples.rb
deleted file mode 100644
index 0a526808585..00000000000
--- a/spec/support/shared_examples/quick_actions/issuable/shrug_quick_action_shared_examples.rb
+++ /dev/null
@@ -1,60 +0,0 @@
-# frozen_string_literal: true
-
-shared_examples 'shrug quick action' do |issuable_type|
- before do
- project.add_maintainer(maintainer)
- gitlab_sign_in(maintainer)
- end
-
- context "new #{issuable_type}", :js do
- before do
- case issuable_type
- when :merge_request
- visit public_send('namespace_project_new_merge_request_path', project.namespace, project, new_url_opts)
- wait_for_all_requests
- when :issue
- visit public_send('new_namespace_project_issue_path', project.namespace, project, new_url_opts)
- wait_for_all_requests
- end
- end
-
- it "creates the #{issuable_type} and interprets shrug quick action accordingly" do
- fill_in "#{issuable_type}_title", with: 'bug 345'
- fill_in "#{issuable_type}_description", with: "bug description\n/shrug oops"
- click_button "Submit #{issuable_type}".humanize
-
- issuable = project.public_send(issuable_type.to_s.pluralize).first
-
- expect(issuable.description).to eq "bug description\noops ¯\\_(ツ)_/¯"
- expect(page).to have_content 'bug 345'
- expect(page).to have_content "bug description\noops ¯\\_(ツ)_/¯"
- end
- end
-
- context "post note to existing #{issuable_type}" do
- before do
- visit public_send("project_#{issuable_type}_path", project, issuable)
- wait_for_all_requests
- end
-
- it 'creates the note and interprets shrug quick action accordingly' do
- add_note("/shrug oops")
-
- wait_for_requests
- expect(page).not_to have_content '/shrug oops'
- expect(page).to have_content "oops ¯\\_(ツ)_/¯"
- expect(issuable.notes.last.note).to eq "oops ¯\\_(ツ)_/¯"
- end
- end
-
- context "preview of note on #{issuable_type}", :js do
- it 'explains shrug quick action' do
- visit public_send("project_#{issuable_type}_path", project, issuable)
-
- preview_note('/shrug oops')
-
- expect(page).not_to have_content '/shrug'
- expect(page).to have_content "oops ¯\\_(ツ)_/¯"
- end
- end
-end