summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/quick_actions/issue/confidential_quick_action_shared_examples.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/quick_actions/issue/confidential_quick_action_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/quick_actions/issue/confidential_quick_action_shared_examples.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/support/shared_examples/quick_actions/issue/confidential_quick_action_shared_examples.rb b/spec/support/shared_examples/quick_actions/issue/confidential_quick_action_shared_examples.rb
deleted file mode 100644
index 336500487fe..00000000000
--- a/spec/support/shared_examples/quick_actions/issue/confidential_quick_action_shared_examples.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-# frozen_string_literal: true
-
-shared_examples 'confidential quick action' do
- context 'when the current user can update issues' do
- it 'does not create a note, and marks the issue as confidential' do
- add_note('/confidential')
-
- expect(page).not_to have_content '/confidential'
- expect(page).to have_content 'Commands applied'
- expect(page).to have_content 'made the issue confidential'
-
- expect(issue.reload).to be_confidential
- end
- end
-
- context 'when the current user cannot update the issue' do
- let(:guest) { create(:user) }
-
- before do
- project.add_guest(guest)
- gitlab_sign_out
- sign_in(guest)
- visit project_issue_path(project, issue)
- end
-
- it 'does not create a note, and does not mark the issue as confidential' do
- add_note('/confidential')
-
- expect(page).not_to have_content 'Commands applied'
- expect(page).not_to have_content 'made the issue confidential'
-
- expect(issue.reload).not_to be_confidential
- end
- end
-end