()
| 123 | |
| 124 | #[test] |
| 125 | fn test_condense_bash_with_command() { |
| 126 | let jsonl = br#"{"type":"assistant","uuid":"6","message":{"content":[{"type":"tool_use","name":"Bash","input":{"command":"cargo test"}}]}}"#; |
| 127 | let entries = condense_claude_transcript(jsonl); |
| 128 | assert_eq!(entries.len(), 1); |
| 129 | assert_eq!(entries[0].tool_detail.as_deref(), Some("cargo test")); |
| 130 | } |
| 131 | |
| 132 | #[test] |
| 133 | fn test_condense_multi_line() { |
nothing calls this directly
no test coverage detected