()
| 772 | |
| 773 | #[test] |
| 774 | fn test_set_first_prompt() { |
| 775 | let mut s = make_session(); |
| 776 | s.set_first_prompt("Fix the bug"); |
| 777 | assert_eq!(s.first_prompt.as_deref(), Some("Fix the bug")); |
| 778 | } |
| 779 | |
| 780 | #[test] |
| 781 | fn test_set_first_prompt_no_overwrite() { |
nothing calls this directly
no test coverage detected