()
| 903 | |
| 904 | #[test] |
| 905 | fn test_display_with_prompt() { |
| 906 | let mut s = make_session(); |
| 907 | s.set_first_prompt("Fix the authentication bug"); |
| 908 | let display = s.to_string(); |
| 909 | assert!(display.contains("Fix the authentication bug")); |
| 910 | } |
| 911 | |
| 912 | #[test] |
| 913 | fn test_display_singular_turn() { |
nothing calls this directly
no test coverage detected