1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-20 20:09:07 +00:00

Improve readme test

This commit is contained in:
nvbn 2015-08-24 11:25:49 +03:00
parent ee610032b8
commit c6171a85e9

View File

@ -2,18 +2,16 @@ from pathlib import Path
def test_readme():
with open('README.md') as f:
project_root = Path(__file__).parent.parent
with project_root.joinpath('README.md').open() as f:
readme = f.read()
bundled = Path(__file__).parent.parent \
bundled = project_root \
.joinpath('thefuck') \
.joinpath('rules') \
.glob('*.py')
for rule in bundled:
if rule.stem != '__init__' and rule.stem not in readme:
raise Exception('Missing rule "{}" in README.md'.format(rule.stem))
if __name__ == '__main__':
test_readme()
if rule.stem != '__init__':
assert rule.stem in readme,\
'Missing rule "{}" in README.md'.format(rule.stem)