(self, tmp_path)
| 18 | assert agent.name == "wiki-query" |
| 19 | |
| 20 | def test_agent_has_three_tools(self, tmp_path): |
| 21 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
| 22 | assert len(agent.tools) == 3 |
| 23 | |
| 24 | def test_agent_tool_names(self, tmp_path): |
| 25 | agent = build_query_agent(str(tmp_path), "gpt-4o-mini") |
nothing calls this directly
no test coverage detected