()
| 80 | |
| 81 | #[test] |
| 82 | fn test_condense_user_message() { |
| 83 | let jsonl = br#"{"type":"user","uuid":"1","message":{"content":"Fix the bug"}}"#; |
| 84 | let entries = condense_claude_transcript(jsonl); |
| 85 | assert_eq!(entries.len(), 1); |
| 86 | assert!(entries[0].is_user()); |
| 87 | assert_eq!(entries[0].content.as_deref(), Some("Fix the bug")); |
| 88 | } |
| 89 | |
| 90 | #[test] |
| 91 | fn test_condense_assistant_text() { |
nothing calls this directly
no test coverage detected