Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions rust/personhog-router/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
## Test conventions

- **Prefer parameterized tests.** When testing multiple variations of the same behavior, use a parameterized approach with `rstest` or a loop over test cases rather than writing separate test functions for each variation.
- Mock traits live in `src/service/tests/mocks.rs`.
- Integration tests go in `tests/`.
- Integration tests go in `tests/`. Shared helpers live in `tests/common/mod.rs` — they start real in-process gRPC test servers (`TestReplicaService`, `TestLeaderService`), not mock traits.
Loading