コード例 #1
0
ファイル: test_models.py プロジェクト: travijuu/django-herald
 def test_get_extra_data(self):
     notification = SentNotification(extra_data='{"something":["one","two"]}')
     self.assertDictEqual(notification.get_extra_data(), {'something': ['one', 'two']})
コード例 #2
0
ファイル: test_models.py プロジェクト: travijuu/django-herald
 def test_get_extra_data_none(self):
     notification = SentNotification()
     self.assertDictEqual(notification.get_extra_data(), {})