Restructure: remove separate parser

This commit is contained in:
Jonas Zeunert
2024-04-27 15:38:36 +02:00
parent 8e5cf17c0b
commit e03a70cc05
4 changed files with 16 additions and 34 deletions

View File

@@ -1,10 +0,0 @@
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