Mercurial > hgrepos > Python > libs > ConfigMix
view tests/data/jail-root-ref.yml @ 686:80d203ed3556
FIX: The YAML loader had wrong format strings in its exception handlers.
This is a code-path that is executed extremely rarely.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sat, 10 Jun 2023 21:58:16 +0200 |
| parents | e71f8bd50342 |
| children | db764da37cd2 |
line wrap: on
line source
# -*- coding: utf-8; mode: yaml; indent-tabs-mode: nil; -*- # Testing jail roots with references ("symlinks") %YAML 1.1 --- target1: tree1: k1: v1 k2: v2 k3: v3 ks: '{{target1.tree1.k3}}' sub-tree1: k4: v4 k5: v5 k6: v6 ks: '{{target1.tree1.k3}}' target2: tree2: '{{ref:#target1.tree1}}' the-root: ref1: '{{ref:#target1.tree1}}' ref2: '{{ref:#target2.tree2}}'
