()
| 299 | } |
| 300 | |
| 301 | fn sample_todo_snapshot() -> TodoSnapshot { |
| 302 | TodoSnapshot { |
| 303 | todo_id: "todo-001".into(), |
| 304 | content: "Refactor token validation logic".into(), |
| 305 | owner: "agent".into(), |
| 306 | final_status: "done".into(), |
| 307 | priority: "high".into(), |
| 308 | file: Some("src/auth/token.rs".into()), |
| 309 | start_line: Some(42), |
| 310 | end_line: Some(87), |
| 311 | started_at: Some("2025-01-15T10:30:00Z".into()), |
| 312 | completed_at: Some("2025-01-15T10:32:15Z".into()), |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | fn sample_phase_timing_entry() -> PhaseTimingEntry { |
| 317 | PhaseTimingEntry { |
no outgoing calls