()
| 632 | |
| 633 | #[test] |
| 634 | fn test_provenance_prompt_hash() { |
| 635 | let session = make_session(); |
| 636 | let event = make_event(); |
| 637 | let options = make_options(&session, &event); |
| 638 | |
| 639 | let prov = build_turn_provenance(&options); |
| 640 | assert!(prov.prompt.hash().is_some()); |
| 641 | // Should be a hash, not the full text (privacy) |
| 642 | assert!(!prov.prompt.has_full_text()); |
| 643 | } |
| 644 | |
| 645 | #[test] |
| 646 | fn test_provenance_no_prompt() { |
nothing calls this directly
no test coverage detected