()
| 622 | |
| 623 | #[test] |
| 624 | fn test_provenance_session_id() { |
| 625 | let session = make_session(); |
| 626 | let event = make_event(); |
| 627 | let options = make_options(&session, &event); |
| 628 | |
| 629 | let prov = build_turn_provenance(&options); |
| 630 | assert_eq!(prov.session_id, Some("sess-test-123".to_string())); |
| 631 | } |
| 632 | |
| 633 | #[test] |
| 634 | fn test_provenance_prompt_hash() { |
nothing calls this directly
no test coverage detected