Files
ergogen-footprint-converter/tests/unit/test_parser.py
2024-04-27 15:19:30 +02:00

11 lines
261 B
Python

from ergogen_footprint_converter.parser import Parser
import pytest
from pathlib import Path
def test_parser_filenotexists():
with pytest.raises(Exception, match=r".*Given path is not a file.*"):
Parser(Path("nop"))
def test_parse():
None