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