Beispiel #1
0
 def test_add_attendees(self):
     e = Event()
     a = Attendee(email='*****@*****.**')
     e.add_attendee(a)
     lines = str(e).splitlines()
     self.assertIn("ATTENDEE;[email protected]:mailto:[email protected]",
                   lines)