(self, commands=None)
| 22 | |
| 23 | class TestSlashCompleter: |
| 24 | def _make_completer(self, commands=None): |
| 25 | from mcp_cli.interactive.shell import SlashCompleter |
| 26 | |
| 27 | return SlashCompleter(commands or ["help", "tools", "servers", "quit", "exit"]) |
| 28 | |
| 29 | def test_completer_init(self): |
| 30 | completer = self._make_completer() |
no test coverage detected