(self)
| 666 | assert result == content |
| 667 | |
| 668 | def test_empty_content(self): |
| 669 | processor = self._make_processor() |
| 670 | result = processor._truncate_tool_result("", max_chars=100) |
| 671 | assert result == "" |
| 672 | |
| 673 | def test_value_binding_in_tail_preserved(self): |
| 674 | """Value binding appended at end should survive truncation.""" |
nothing calls this directly
no test coverage detected