mirror of
https://github.com/enzet/map-machine.git
synced 2025-04-28 17:57:11 +02:00
7 lines
239 B
Python
7 lines
239 B
Python
from map_machine import REQUIREMENTS
|
|
from pathlib import Path
|
|
|
|
|
|
def test_requirements() -> None:
|
|
with Path("requirements.txt").open() as requirements_file:
|
|
assert [x[:-1] for x in requirements_file.readlines()] == REQUIREMENTS
|