()
| 834 | |
| 835 | #[test] |
| 836 | fn test_has_prompt() { |
| 837 | let e = make_envelope(); |
| 838 | assert!(e.has_prompt()); |
| 839 | |
| 840 | let e = make_minimal_envelope(); |
| 841 | assert!(!e.has_prompt()); |
| 842 | |
| 843 | let e = SessionEnvelope::builder("s", "a") |
| 844 | .prompt_summary("") |
| 845 | .build(); |
| 846 | assert!(!e.has_prompt()); |
| 847 | } |
| 848 | |
| 849 | #[test] |
| 850 | fn test_is_session_complete() { |
nothing calls this directly
no test coverage detected