mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-21 13:00:13 -06:00
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
10 lines
280 B
Python
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()
|