summaryrefslogtreecommitdiffstats
path: root/tests/readme_test.py
blob: 038868d86288b5a003b8f3a8d20536e868c3eebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

from pre_commit_hooks.check_yaml import yaml


def test_readme_contains_all_hooks():
    with open('README.md', encoding='UTF-8') as f:
        readme_contents = f.read()
    with open('.pre-commit-hooks.yaml', encoding='UTF-8') as f:
        hooks = yaml.load(f)
    for hook in hooks:
        assert f'`{hook["id"]}`' in readme_contents