(id: &str)
| 96 | use super::*; |
| 97 | |
| 98 | fn outcome(id: &str) -> StepOutcome { |
| 99 | StepOutcome { |
| 100 | task_id: id.to_string(), |
| 101 | session_id: format!("task-run-{id}"), |
| 102 | agent: "a".to_string(), |
| 103 | output: "o".to_string(), |
| 104 | success: true, |
| 105 | structured: None, |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | #[test] |
| 110 | fn round_trips_and_exposes_completed_map() { |
no outgoing calls