fix: update tests

This commit is contained in:
egarette@silique.fr 2025-11-03 09:02:00 +01:00
parent a2ca13bcd6
commit 39a1595ebd
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,9 @@
%YAML 1.2
---
version: 1.1
var:
description: the first variable
type: integer
multi: true
...

View file

@ -0,0 +1,15 @@
%YAML 1.2
---
version: 1.1
var1:
description: the first variable
tags:
- one_tag
var2:
description: the second variable
tags:
- one_tag
- second_tag
...

View file

@ -0,0 +1,18 @@
%YAML 1.2
---
version: 1.1
var:
description: A suffix variable
default:
- val1
- val2
hidden: true
dyn{{ identifier }}:
description: A dynamic family
dynamic:
variable: _.var
var: # A dynamic variable
...