()
| 286 | use super::*; |
| 287 | |
| 288 | fn sample_intent_entry() -> IntentEntry { |
| 289 | IntentEntry { |
| 290 | title: "Fix authentication bug".into(), |
| 291 | description: "The login flow fails when the session token expires".into(), |
| 292 | turn_id: 3, |
| 293 | model: "claude-sonnet-4-20250514".into(), |
| 294 | session_id: "sess-abc123".into(), |
| 295 | outcome: "success".into(), |
| 296 | total_tokens: 15420, |
| 297 | total_cost_usd: 0.0462, |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | fn sample_todo_snapshot() -> TodoSnapshot { |
| 302 | TodoSnapshot { |
no outgoing calls