Exemplo n.º 1
0
 def test_invalid_email(self):
     sentence = "[email protected]"
     self.assertIsNone(get_email(sentence))
Exemplo n.º 2
0
 def test_two_emails(self):
     sentence = "[email protected] [email protected]"
     self.assertEqual(get_email(sentence), "*****@*****.**")
Exemplo n.º 3
0
 def test_only_email(self):
     self.assertEqual(get_email("*****@*****.**"), "*****@*****.**")
Exemplo n.º 4
0
 def test_punctuation_after_email(self):
     sentence = "Email is [email protected]."
     self.assertEqual(get_email(sentence), "*****@*****.**")
Exemplo n.º 5
0
 def test_ending_in_email(self):
     sentence = "String with email [email protected]"
     self.assertEqual(get_email(sentence), "*****@*****.**")