Add: Test for filenotfounderror

This commit is contained in:
Jonas Zeunert
2024-04-27 14:35:19 +02:00
parent 20a6b12642
commit 8c3d678ffb
6 changed files with 63 additions and 0 deletions

0
tests/unit/__init__.py Normal file
View File

View File

@@ -0,0 +1,8 @@
from ergogen_footprint_converter.converter import Converter
def test_convert():
input = ""
converter = Converter(input)
res = converter.convert()

View File

@@ -0,0 +1,4 @@
from ergogen_footprint_converter.parser import Parser
def test_parser():
None