32 lines
431 B
Markdown
32 lines
431 B
Markdown
# Test Plan
|
|
|
|
## Bootstrap Validation
|
|
|
|
Run:
|
|
|
|
```bash
|
|
python3 -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -e '.[dev]'
|
|
pytest
|
|
rdb --help
|
|
|
|
Expected result:
|
|
|
|
Tests pass
|
|
CLI help displays
|
|
|
|
## Guardrails Validation
|
|
|
|
Run:
|
|
|
|
```bash
|
|
rdb guardrails
|
|
```
|
|
|
|
Expected result:
|
|
|
|
A report listing at least 5 checks (repeated reads, repeated commands,
|
|
recent file changes, test run record, RUN_LOG consistency) with an
|
|
overall status summary.
|