# BOUNDED ON PURPOSE. Three anchors, each referenced at most three times, expanding to well
# under two hundred nodes. This is a fixture for alias RESOLUTION and for measuring expansion
# cost on a safe input — it is deliberately NOT a "billion laughs" style expansion bomb, and it
# must never be grown into one. If you need to test a depth limit, lower the limit rather than
# raising this file.
leaf: &leaf
  retries: 2
  timeout: 30

group: &group
  a: *leaf
  b: *leaf
  c: *leaf

pipeline:
  one: *group
  two: *group
  three: *group

expected:
  distinct_anchors: 2
  alias_references: 6
  expanded_leaf_maps: 9
  total_expanded_nodes: 31
