From e145d8887d7ed582caa1d47fddd08d2c0068c6bb Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Sun, 2 Jun 2024 17:53:15 -0700 Subject: [PATCH] update smscalls test --- tests/smscalls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/smscalls.py b/tests/smscalls.py index d063de1..ef78786 100644 --- a/tests/smscalls.py +++ b/tests/smscalls.py @@ -4,6 +4,7 @@ from my.tests.common import skip_if_not_karlicoss as pytestmark # TODO implement via stat? def test() -> None: - from my.smscalls import calls, messages + from my.smscalls import calls, messages, mms assert len(list(calls())) > 10 assert len(list(messages())) > 10 + assert len(list(mms())) > 10