mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
check message counters too
This commit is contained in:
parent
d8ca87057b
commit
e25759c1ac
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user