()
| 755 | |
| 756 | #[test] |
| 757 | fn test_set_transcript_path_first_time() { |
| 758 | let mut s = make_session(); |
| 759 | s.set_transcript_path("/tmp/t.jsonl"); |
| 760 | assert_eq!(s.transcript_path, Some(PathBuf::from("/tmp/t.jsonl"))); |
| 761 | } |
| 762 | |
| 763 | #[test] |
| 764 | fn test_set_transcript_path_no_overwrite() { |
nothing calls this directly
no test coverage detected