Skip to content

Commit aed77b0

Browse files
authored
Merge pull request #7 from asvcode/codex/add-basic-test
Add basic README test
2 parents 66f635a + 604c1b4 commit aed77b0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_readme.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)