diff --git a/tests/test_docs_consistency.py b/tests/test_docs_consistency.py index 803aa46..bb7e1bc 100644 --- a/tests/test_docs_consistency.py +++ b/tests/test_docs_consistency.py @@ -31,12 +31,6 @@ def test_roadmap_current_version(self, plugin_manifest, roadmap_text): f"ROADMAP.md does not list v{version} as current" ) - def test_claude_md_version(self, plugin_manifest, claude_text): - version = plugin_manifest["version"] - assert f"v{version}" in claude_text or version in claude_text, ( - f"CLAUDE.md does not mention version {version}" - ) - def test_changelog_has_current_version(self, plugin_manifest, changelog_text): version = plugin_manifest["version"] assert f"[{version}]" in changelog_text, ( diff --git a/tests/test_roadmap.py b/tests/test_roadmap.py index 225e561..0420f7c 100644 --- a/tests/test_roadmap.py +++ b/tests/test_roadmap.py @@ -15,12 +15,6 @@ def test_exactly_one_current_in_table(self, roadmap_text): f"Expected exactly 1 '(current)' in roadmap table, found {len(current_matches)}" ) - def test_current_matches_plugin_version(self, plugin_manifest, roadmap_text): - version = plugin_manifest["version"] - assert f"v{version} (current)" in roadmap_text or f"v{version}(current)" in roadmap_text, ( - f"ROADMAP table does not mark v{version} as (current)" - ) - def test_current_line_version(self, plugin_manifest, roadmap_text): version = plugin_manifest["version"] m = re.search(r"\*\*Current:\*\*\s+v([\d.]+)", roadmap_text)