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