()
| 661 | |
| 662 | #[test] |
| 663 | fn test_record_verification_populated() { |
| 664 | let graph = sherpa_graph(); |
| 665 | let tmp = tempfile::tempdir().unwrap(); |
| 666 | let record = to_agent_trace_record(&graph, tmp.path()); |
| 667 | |
| 668 | let verif = &record.metadata["dev.atomic"]["verification"]; |
| 669 | assert_eq!(verif["outcome"], "completed"); |
| 670 | assert_eq!(verif["intent_turn_id"], 3); |
| 671 | } |
| 672 | |
| 673 | #[test] |
| 674 | fn test_record_files_populated() { |
nothing calls this directly
no test coverage detected