Vendor LLMmap / llm-verify / llm-fingerprint-detector under bash/fingerprint/tools so the three fingerprint benchmarks run with only /data1/eval mounted (no /data1/xii dependency): - run.py DEFAULT_TOOLS_ROOT prefers builtin tools/, falls back to /data1/xii - exclude .git / node_modules / template backups - detector dist/ (pre-built) retained; node_modules not needed at runtime
9 lines
228 B
Python
9 lines
228 B
Python
"""Tests for the installed command-line entry point."""
|
|
|
|
from src.cli import main
|
|
|
|
|
|
def test_cli_help_is_available(capsys) -> None:
|
|
assert main([]) == 0
|
|
assert "Run the LLM Verify API service" in capsys.readouterr().out
|