File size: 183 Bytes
188e792 |
1 2 3 4 5 6 7 |
import pytest
from app import postproccess
def test_postprocess():
assert postproccess([]) == ''
assert postproccess([{"entity_group": '1'}, {"entity_group": '2'}]) == "1 2"
|