22 lines
334 B
YAML
22 lines
334 B
YAML
%YAML 1.2
|
|
---
|
|
version: 1.1
|
|
|
|
var1:
|
|
description: a second variable
|
|
validators:
|
|
- jinja: |-
|
|
{% if _.var1 != index %}
|
|
value != than index
|
|
{% endif %}
|
|
description: value must be equal to index
|
|
params:
|
|
index:
|
|
type: index
|
|
default:
|
|
- 0
|
|
- 1
|
|
- 2
|
|
test:
|
|
- 0
|
|
...
|