roundtrip test for property parameter adding

pull/120/merge
Johannes Raggam 2013-12-26 09:59:12 +01:00
rodzic 94e20287a4
commit cf533d22bd
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -211,3 +211,9 @@ END:VCALENDAR"""
b'X-APPLE-RADIUS=72;X-TITLE="367 George Street":'
b'geo:-33.868900\r\n \\,151.207000\r\nEND:VEVENT\r\n'
)
# roundtrip
self.assertEqual(
event.to_ical(),
icalendar.Event.from_ical(event.to_ical()).to_ical()
)