()
| 791 | |
| 792 | #[test] |
| 793 | fn test_envelope_prompt_summary() { |
| 794 | let session = make_session(); |
| 795 | let event = make_event(); |
| 796 | let options = make_options(&session, &event); |
| 797 | |
| 798 | let env = build_turn_envelope(&options, &[]); |
| 799 | assert_eq!( |
| 800 | env.prompt_summary.as_deref(), |
| 801 | Some("Fix the authentication bug in login.rs") |
| 802 | ); |
| 803 | } |
| 804 | |
| 805 | #[test] |
| 806 | fn test_envelope_prompt_hash() { |
nothing calls this directly
no test coverage detected