Ejemplo n.º 1
0
 def test_get_date(self):
     self.assertEqual(import_email.get_date(test_inputs.get_valid_email_text()), "Fri, 1 Dec 2000 01:12:00 -0800 (PST)")
Ejemplo n.º 2
0
 def test_get_Content(self):
     answer = ''
     answer += 'Sorry about that, here it is for real this time.\n'
     answer += 'Second Content Line\n'
     self.assertEqual(import_email.get_content(test_inputs.get_valid_email_text()), answer)
Ejemplo n.º 3
0
 def test_get_bcc(self):
     answer = ['Random BCC', 'Other Random BCC']
     self.assertEqual(import_email.get_bcc(test_inputs.get_valid_email_text()), answer)
Ejemplo n.º 4
0
 def test_get_subject(self):
     self.assertEqual(import_email.get_subject(test_inputs.get_valid_email_text()), 'Transmission Rate Part II')
Ejemplo n.º 5
0
 def test_get_to(self):
     answer = ['*****@*****.**', '*****@*****.**', '*****@*****.**', '*****@*****.**',
               '*****@*****.**', '*****@*****.**', '*****@*****.**',
               '*****@*****.**']
     self.assertEqual(import_email.get_to(test_inputs.get_valid_email_text()), answer)
Ejemplo n.º 6
0
 def test_get_from(self):
     self.assertEqual(import_email.get_from(test_inputs.get_valid_email_text()), '*****@*****.**')