()
| 744 | |
| 745 | #[test] |
| 746 | fn test_set_first_prompt() { |
| 747 | let mut s = make_session(); |
| 748 | s.set_first_prompt("Fix the bug"); |
| 749 | assert_eq!(s.first_prompt.as_deref(), Some("Fix the bug")); |
| 750 | } |
| 751 | |
| 752 | #[test] |
| 753 | fn test_set_first_prompt_no_overwrite() { |
nothing calls this directly
no test coverage detected