Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 482d372848
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| self.assertIn("ROADMAP.md", readme) | ||
| self.assertIn("ROADMAP.md", agents) |
There was a problem hiding this comment.
Verify actual links instead of token presence
Using assertIn("ROADMAP.md", ...) only checks for a raw substring, so this test will still pass if README.md or AGENTS.md merely mention ROADMAP.md in unrelated text while the real entrypoint links are removed or redirected. Because this test is intended as a route lock, it should assert an actual Markdown link/route target (or equivalent structured marker) to prevent false negatives in future regressions.
Useful? React with 👍 / 👎.
Summary
README.mdandAGENTS.mdrouted to the repo's canonicalROADMAP.mdor equivalent current entry surfaceTesting
tests/test_current_direction_routes.py