예제 #1
0
파일: event.py 프로젝트: jammon/ics.py
 def test_not_duration_and_end(self):
     c = Calendar(calendar_with_duration_and_end)
     with self.assertRaises(ValueError):
         c.validate()
예제 #2
0
파일: calendar.py 프로젝트: jammon/ics.py
 def test_no_prodid(self):
     c = Calendar(calendar_without_prodid)
     with self.assertRaises(ValueError):
         c.validate()