summaryrefslogtreecommitdiff
path: root/spec/models/clusters/applications/helm_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/clusters/applications/helm_spec.rb')
-rw-r--r--spec/models/clusters/applications/helm_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/clusters/applications/helm_spec.rb b/spec/models/clusters/applications/helm_spec.rb
index 9672129bb1e..64f58155a66 100644
--- a/spec/models/clusters/applications/helm_spec.rb
+++ b/spec/models/clusters/applications/helm_spec.rb
@@ -134,4 +134,14 @@ describe Clusters::Applications::Helm do
end
end
end
+
+ describe '#post_uninstall' do
+ let(:helm) { create(:clusters_applications_helm, :installed) }
+
+ it do
+ expect(helm.cluster.kubeclient).to receive(:delete_namespace).with('gitlab-managed-apps')
+
+ helm.post_uninstall
+ end
+ end
end