Files
bugsink/phonehome/tests.py
Klaas van Schelven d8fef759ca Add database vendor, version and machine arch to phonehome message
See #226, in the context of which having some idea of the number of
installations on 2.x w/ mariadb would have been very useful
2025-10-10 09:41:57 +02:00

10 lines
280 B
Python

from django.test import TestCase
from .tasks import _make_message_body
class PhoneHomeTests(TestCase):
def test_make_message_body(self):
# simple "does not crash" test (at least tests the various database getter code paths don't crash)
_make_message_body()