6 lines
92 B
Python
6 lines
92 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_readme_present():
|
|
assert Path("README.md").exists()
|