2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

check message counters too

This commit is contained in:
Matthias
2021-12-04 04:08:11 +01:00
parent d8ca87057b
commit e25759c1ac

View File

@ -18,7 +18,7 @@ from .templatetags import inventree_extras
import part.settings
from common.models import InvenTreeSetting, NotificationEntry
from common.models import InvenTreeSetting, NotificationEntry, NotificationMessage
class TemplateTagTest(TestCase):
@ -518,6 +518,11 @@ class PartNotificationTest(BaseNotificationIntegrationTest):
def test_notification(self):
self._notification_run()
# There should be 1 notification message right now
self.assertEqual(NotificationMessage.objects.all().count(), 1)
# Try again -> cover the already send line
self.part.save()
# There should not be more messages
self.assertEqual(NotificationMessage.objects.all().count(), 1)