()
| 727 | |
| 728 | #[test] |
| 729 | fn test_set_transcript_path_first_time() { |
| 730 | let mut s = make_session(); |
| 731 | s.set_transcript_path("/tmp/t.jsonl"); |
| 732 | assert_eq!(s.transcript_path, Some(PathBuf::from("/tmp/t.jsonl"))); |
| 733 | } |
| 734 | |
| 735 | #[test] |
| 736 | fn test_set_transcript_path_no_overwrite() { |
nothing calls this directly
no test coverage detected