diff options
author | John Estabrook <jestabro@vyos.io> | 2023-03-20 11:50:14 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2023-03-29 10:28:14 -0500 |
commit | dccc689e0e666787834f45e6ab6bd972fddabf95 (patch) | |
tree | 8da0b310bb490bf7679a538fb3ad84fd1e998f91 /tests/data/config.left | |
parent | da43c4cbd495ce85f491c304de43e65ee1f39f08 (diff) | |
download | vyos-1x-dccc689e0e666787834f45e6ab6bd972fddabf95.tar.gz vyos-1x-dccc689e0e666787834f45e6ab6bd972fddabf95.zip |
configdiff: T5089: add unit test
Diffstat (limited to 'tests/data/config.left')
-rw-r--r-- | tests/data/config.left | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/data/config.left b/tests/data/config.left new file mode 100644 index 000000000..e57c40396 --- /dev/null +++ b/tests/data/config.left @@ -0,0 +1,36 @@ +node1 { + tag_node foo { + valueless + multi_node 'v2' + multi_node 'v1' + single 'left_val' + } + tag_node bar { + node { + single 'v0' + } + } + tag_node other { + leaf 'leaf_l' + } +} + +node3 { +} + +node2 { + sub_node_other { + single 'val' + } + sub_node { + tag_node other { + single 'val' + } + tag_node bob { + valued 'baz' + } + tag_node duff { + valued 'buz' + } + } +} |