print content of example

In order for the test in
https://github.com/collective/icalendar/blob/master/src/icalendar/tests/test_with_doctest.py
not to fail it was necessary to normilize the whitespace
pull/504/head
Abe 2022-12-19 16:09:37 -05:00
rodzic dd2014ee9a
commit 4c998ed259
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7B605E1EB3F95000
1 zmienionych plików z 20 dodań i 0 usunięć

Wyświetl plik

@ -317,6 +317,26 @@ Write to disk::
522
>>> f.close()
Print out the calendar::
>>> print(cal.to_ical().decode("utf-8")) # doctest: +NORMALIZE_WHITESPACE
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//My calendar product//mxm.dk//
BEGIN:VEVENT
SUMMARY:Python meeting about calendaring
DTSTART:20050404T080000Z
DTEND:20050404T100000Z
DTSTAMP:20050404T001000Z
UID:20050115T101010/27346262376@mxm.dk
ATTENDEE;CN="Max Rasmussen";ROLE=REQ-PARTICIPANT:MAILTO:maxm@example.com
ATTENDEE;CN="The Dude";ROLE=REQ-PARTICIPANT:MAILTO:the-dude@example.com
LOCATION:Odense\, Denmark
ORGANIZER;CN="Max Rasmussen";ROLE=CHAIR:MAILTO:noone@example.com
PRIORITY:5
END:VEVENT
END:VCALENDAR
<BLANKLINE>
More documentation
==================