(self)
| 200 | assert child.query_tracking.depth == 0 |
| 201 | |
| 202 | def test_nested_depth(self): |
| 203 | parent = _make_parent_context() |
| 204 | parent.query_tracking = QueryChainTracking(chain_id="p", depth=5) |
| 205 | |
| 206 | child = create_subagent_context(parent) |
| 207 | |
| 208 | assert child.query_tracking.depth == 6 |
| 209 | |
| 210 | |
| 211 | # --- Overrides --- |
nothing calls this directly
no test coverage detected