disk0dancer's picture
Create tests/unit/test_unit.py
188e792 verified
raw
history blame contribute delete
183 Bytes
import pytest
from app import postproccess
def test_postprocess():
assert postproccess([]) == ''
assert postproccess([{"entity_group": '1'}, {"entity_group": '2'}]) == "1 2"