HPI/tests/smscalls.py
seanbreckenridge 35dd5d82a0
smscalls: parse mms from smscalls export (#370)
* initial mms exploration
2024-06-05 22:03:03 +01:00

10 lines
389 B
Python

from my.tests.common import skip_if_not_karlicoss as pytestmark
# TODO maybe instead detect if it has any data at all
# if none, then skip the test, say that user doesn't have any data?
# TODO implement via stat?
def test() -> None:
from my.smscalls import calls, messages, mms
assert len(list(calls())) > 10
assert len(list(messages())) > 10
assert len(list(mms())) > 10