summaryrefslogtreecommitdiff
path: root/spec/controllers/admin/clusters/applications_controller_spec.rb
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-06-28 00:29:19 +1200
committerThong Kuah <tkuah@gitlab.com>2019-06-28 01:24:05 +1200
commit8152efbe2fc486520ec5cd11d54a49fbf7e554bf (patch)
tree224aa61a7751385b9963faaf773f3b9f3d9e6dcc /spec/controllers/admin/clusters/applications_controller_spec.rb
parent3f759e1674b19f9fc7690239c138fca8aeec6434 (diff)
downloadgitlab-ce-8152efbe2fc486520ec5cd11d54a49fbf7e554bf.tar.gz
Remove instance_clusters feature_flagremove_group_and_instance_clusters_feature_flag
Now we have terminals for instance and group clusters we can remove the FF now. Deploying to instance clusters has been working without complaints too.
Diffstat (limited to 'spec/controllers/admin/clusters/applications_controller_spec.rb')
-rw-r--r--spec/controllers/admin/clusters/applications_controller_spec.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/controllers/admin/clusters/applications_controller_spec.rb b/spec/controllers/admin/clusters/applications_controller_spec.rb
index 76f261e7d3f..cf202d88acc 100644
--- a/spec/controllers/admin/clusters/applications_controller_spec.rb
+++ b/spec/controllers/admin/clusters/applications_controller_spec.rb
@@ -13,16 +13,6 @@ describe Admin::Clusters::ApplicationsController do
it { expect { subject }.to be_allowed_for(:admin) }
it { expect { subject }.to be_denied_for(:user) }
it { expect { subject }.to be_denied_for(:external) }
-
- context 'when instance clusters are disabled' do
- before do
- stub_feature_flags(instance_clusters: false)
- end
-
- it 'returns 404' do
- is_expected.to have_http_status(:not_found)
- end
- end
end
let(:cluster) { create(:cluster, :instance, :provided_by_gcp) }