We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66f635a + 604c1b4 commit aed77b0Copy full SHA for aed77b0
tests/test_readme.py
@@ -0,0 +1,7 @@
1
+import pathlib
2
+
3
4
+def test_readme_contains_project_name():
5
+ readme_path = pathlib.Path(__file__).resolve().parents[1] / 'README.md'
6
+ content = readme_path.read_text(encoding='utf-8')
7
+ assert 'Vision_UI' in content
0 commit comments