Files
ergogen-footprint-converter/tests/unit/test_parser.py
Jonas Zeunert 4561e0399b Rewrite tests
2024-04-27 14:58:50 +02:00

11 lines
262 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_parser():
None