summaryrefslogtreecommitdiffstats
path: root/tests/readme_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/readme_test.py')
-rw-r--r--tests/readme_test.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/readme_test.py b/tests/readme_test.py
new file mode 100644
index 0000000..7df7fcf
--- /dev/null
+++ b/tests/readme_test.py
@@ -0,0 +1,10 @@
+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