summaryrefslogtreecommitdiff
path: root/spec/serializers/cluster_entity_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/serializers/cluster_entity_spec.rb')
-rw-r--r--spec/serializers/cluster_entity_spec.rb13
1 files changed, 11 insertions, 2 deletions
diff --git a/spec/serializers/cluster_entity_spec.rb b/spec/serializers/cluster_entity_spec.rb
index abfc3731fb2..c58ee1a1ea6 100644
--- a/spec/serializers/cluster_entity_spec.rb
+++ b/spec/serializers/cluster_entity_spec.rb
@@ -35,8 +35,17 @@ describe ClusterEntity do
end
end
- it 'contains applications' do
- expect(subject[:applications]).to eq({})
+ context 'when no application has been installed' do
+ let(:cluster) { create(:cluster) }
+ subject { described_class.new(cluster).as_json[:applications]}
+
+ it 'contains helm as installable' do
+ expect(subject).not_to be_empty
+
+ helm = subject[0]
+ expect(helm[:name]).to eq('helm')
+ expect(helm[:status]).to eq(:installable)
+ end
end
end
end