()
| 631 | |
| 632 | #[test] |
| 633 | fn test_record_intent_populated() { |
| 634 | let graph = sherpa_graph(); |
| 635 | let tmp = tempfile::tempdir().unwrap(); |
| 636 | let record = to_agent_trace_record(&graph, tmp.path()); |
| 637 | |
| 638 | let intent = &record.metadata["dev.atomic"]["intent"]; |
| 639 | assert_eq!(intent["intent_title"], "Build Hello World CLI"); |
| 640 | assert_eq!(intent["intent_turn_id"], 3); |
| 641 | } |
| 642 | |
| 643 | #[test] |
| 644 | fn test_record_todos_with_executions() { |
nothing calls this directly
no test coverage detected