Exemple #1
0
 def test_get_emails_from_user_ids(self):
     # type: () -> None
     hamlet = self.example_user('hamlet')
     othello = self.example_user('othello')
     dct = get_emails_from_user_ids([hamlet.id, othello.id])
     self.assertEqual(dct[hamlet.id], self.example_email("hamlet"))
     self.assertEqual(dct[othello.id], self.example_email("othello"))
Exemple #2
0
 def test_get_emails_from_user_ids(self) -> None:
     hamlet = self.example_user('hamlet')
     othello = self.example_user('othello')
     dct = get_emails_from_user_ids([hamlet.id, othello.id])
     self.assertEqual(dct[hamlet.id], self.example_email("hamlet"))
     self.assertEqual(dct[othello.id], self.example_email("othello"))