MCPcopy Create free account
hub / github.com/JaredStewart/coderlm / tests

Function tests

plugin/skills/coderlm/scripts/coderlm_cli.py:444–449  ·  view source on GitHub ↗

Find tests referencing a symbol. Returns list of test dicts.

(symbol: str, file: str, limit: int = 20)

Source from the content-addressed store, hash-verified

442
443
444def tests(symbol: str, file: str, limit: int = 20):
445 """Find tests referencing a symbol. Returns list of test dicts."""
446 state = _load_state()
447 result = _safe_get(state, "/symbols/tests", {"symbol": symbol, "file": file, "limit": limit})
448 print(json.dumps(result, indent=2))
449 return result
450
451
452def grep(pattern: str, max_matches: int = 50, scope: str = "all", file: str | None = None):

Callers

nothing calls this directly

Calls 2

_load_stateFunction · 0.85
_safe_getFunction · 0.85

Tested by

no test coverage detected