Esempio n. 1
0
 def test_get_subject_missing(self):
     assert mail.get_subject({}) == "FEC Update: unknown-space | unknown-app"
Esempio n. 2
0
 def test_get_subject_missing(self):
     assert mail.get_subject(
         {}) == 'FEC Update: unknown-space | unknown-app'
Esempio n. 3
0
 def test_get_subject(self):
     settings = {"space_name": "dev", "name": "api"}
     assert mail.get_subject(settings) == "FEC Update: dev | api"
Esempio n. 4
0
 def test_get_subject(self):
     settings = {
         'space_name': 'dev',
         'name': 'api',
     }
     assert mail.get_subject(settings) == 'FEC Update: dev | api'