summaryrefslogtreecommitdiff
path: root/spec/services/issues
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-09-30 12:06:01 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2019-09-30 12:06:01 +0000
commitdea6ebd31af8e97e8b14160181bd4ea7578c94e8 (patch)
tree5e429fda4d43aa3450f7d6b015668c3474cd9e6c /spec/services/issues
parent94611567bd03083e0ecef7a582a174aa34844482 (diff)
downloadgitlab-ce-dea6ebd31af8e97e8b14160181bd4ea7578c94e8.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services/issues')
-rw-r--r--spec/services/issues/zoom_link_service_spec.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/spec/services/issues/zoom_link_service_spec.rb b/spec/services/issues/zoom_link_service_spec.rb
index baa6d774864..595d06d5331 100644
--- a/spec/services/issues/zoom_link_service_spec.rb
+++ b/spec/services/issues/zoom_link_service_spec.rb
@@ -38,12 +38,6 @@ describe Issues::ZoomLinkService do
end
end
- shared_context 'feature flag disabled' do
- before do
- stub_feature_flags(issue_zoom_integration: false)
- end
- end
-
shared_context 'insufficient permissions' do
before do
project.add_guest(user)
@@ -78,11 +72,6 @@ describe Issues::ZoomLinkService do
include_examples 'cannot add link'
end
- context 'when feature flag is disabled' do
- include_context 'feature flag disabled'
- include_examples 'cannot add link'
- end
-
context 'with insufficient permissions' do
include_context 'insufficient permissions'
include_examples 'cannot add link'
@@ -113,12 +102,6 @@ describe Issues::ZoomLinkService do
it { is_expected.to eq(true) }
- context 'when feature flag is disabled' do
- include_context 'feature flag disabled'
-
- it { is_expected.to eq(false) }
- end
-
context 'with insufficient permissions' do
include_context 'insufficient permissions'
@@ -152,11 +135,6 @@ describe Issues::ZoomLinkService do
.to eq(issue.description.delete_suffix("\n\n#{zoom_link}"))
end
- context 'when feature flag is disabled' do
- include_context 'feature flag disabled'
- include_examples 'cannot remove link'
- end
-
context 'with insufficient permissions' do
include_context 'insufficient permissions'
include_examples 'cannot remove link'
@@ -187,12 +165,6 @@ describe Issues::ZoomLinkService do
it { is_expected.to eq(true) }
- context 'when feature flag is disabled' do
- include_context 'feature flag disabled'
-
- it { is_expected.to eq(false) }
- end
-
context 'with insufficient permissions' do
include_context 'insufficient permissions'