(self)
| 49 | assert result["target"] == "test@example.com" |
| 50 | |
| 51 | def test_results_is_list(self): |
| 52 | result = format_tool_result("search_email", "test@example.com", "line one\nline two") |
| 53 | assert isinstance(result["results"], list) |
| 54 | |
| 55 | def test_results_splits_lines(self): |
| 56 | result = format_tool_result("search_email", "t@e.com", "line one\nline two\nline three") |
nothing calls this directly
no test coverage detected