File tree Expand file tree Collapse file tree 5 files changed +41
-2
lines changed Expand file tree Collapse file tree 5 files changed +41
-2
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,10 @@ SUPPORTED := chart \
36
36
issue-471 \
37
37
issue-494 \
38
38
issue-497 \
39
- issue-499
39
+ issue-499 \
40
+ issue-504
40
41
41
- ISSUE := issue-471
42
+ ISSUE := issue-504
42
43
43
44
FILTER_FOLDER := $(filter $(folder ) ,$(SUPPORTED ) )
44
45
Original file line number Diff line number Diff line change
1
+ apiVersion : v2
2
+ description : Allow for skipping specific tests
3
+ name : skip-tests
4
+ version : 0.1.0
5
+ issueLink : https://github.com/helm-unittest/helm-unittest/issues/504
6
+ supportedLinks :
7
+ - https://github.com/helm-unittest/helm-unittest/issues/504
Original file line number Diff line number Diff line change
1
+ {{- if .Values.node.enabled }}
2
+ apiVersion : v1
3
+ kind : Service
4
+ metadata :
5
+ name : {{ .Release.Name }}-{{ .Values.node.name }}-http
6
+ {{- end}}
7
+
Original file line number Diff line number Diff line change
1
+ suite : test wardend service
2
+ templates :
3
+ - simple.yaml
4
+ skip : true
5
+ # - reason: "This test is not ready yet"
6
+ tests :
7
+ - it : " should create Service if node is enabled"
8
+ set :
9
+ node :
10
+ enabled : true
11
+ asserts :
12
+ - hasDocuments :
13
+ count : 1
14
+ - isKind :
15
+ of : Service
Original file line number Diff line number Diff line change
1
+ hosts :
2
+ - chart-example.local
3
+ - chart-example.remote
4
+
5
+ hostsMap :
6
+ - name : value0
7
+ attribute : attribute0
8
+ - name : value1
9
+ attribute : attribute1
You can’t perform that action at this time.
0 commit comments