A prov node so the graph is non-trivial (the projection ignores nodes, but a real graph carries them).
()
| 54 | /// A prov node so the graph is non-trivial (the projection ignores nodes, but a |
| 55 | /// real graph carries them). |
| 56 | fn goal_node() -> ProvenanceNode { |
| 57 | ProvenanceNode { |
| 58 | id: "s-1".into(), |
| 59 | kind: ProvenanceNodeKind::Goal, |
| 60 | timestamp: 1_735_689_600_000, |
| 61 | summary: "Fix the auth bug".into(), |
| 62 | detail: None, |
| 63 | change_hash: None, |
| 64 | tool_name: None, |
| 65 | tool_call_id: None, |
| 66 | duration_ms: None, |
| 67 | classified: false, |
| 68 | confidence: None, |
| 69 | consolidated_from: Vec::new(), |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | /// Recursively collect every file path under `root` (relative), for a |
| 74 | /// before/after "nothing was written" assertion. |
no outgoing calls
no test coverage detected