()
| 525 | use super::*; |
| 526 | |
| 527 | fn sample_intent_entry() -> IntentEntry { |
| 528 | IntentEntry { |
| 529 | title: "Fix authentication bug".into(), |
| 530 | description: "The login flow fails when the session token expires".into(), |
| 531 | turn_id: 3, |
| 532 | model: "claude-sonnet-4-20250514".into(), |
| 533 | session_id: "sess-abc123".into(), |
| 534 | outcome: "success".into(), |
| 535 | total_tokens: 15420, |
| 536 | total_cost_usd: 0.0462, |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | fn sample_todo_snapshot() -> TodoSnapshot { |
| 541 | TodoSnapshot { |
no outgoing calls