diff --git a/src/icalendar/tests/test_fixed_issues.py b/src/icalendar/tests/test_fixed_issues.py deleted file mode 100644 index af84ce0..0000000 --- a/src/icalendar/tests/test_fixed_issues.py +++ /dev/null @@ -1,44 +0,0 @@ -import unittest - -import datetime -import icalendar -import os -import pytz -import pytest -from dateutil import tz - -try: - import zoneinfo -except ModuleNotFoundError: - from backports import zoneinfo - -class TestIssues(unittest.TestCase): - def test_issue_116(self): - """Issue #116/#117 - How to add 'X-APPLE-STRUCTURED-LOCATION' - https://github.com/collective/icalendar/issues/116 - https://github.com/collective/icalendar/issues/117 - """ - event = icalendar.Event() - event.add( - "X-APPLE-STRUCTURED-LOCATION", - "geo:-33.868900,151.207000", - parameters={ - "VALUE": "URI", - "X-ADDRESS": "367 George Street Sydney CBD NSW 2000", - "X-APPLE-RADIUS": "72", - "X-TITLE": "367 George Street" - } - ) - self.assertEqual( - event.to_ical(), - b'BEGIN:VEVENT\r\nX-APPLE-STRUCTURED-LOCATION;VALUE=URI;' - b'X-ADDRESS="367 George Street Sydney \r\n CBD NSW 2000";' - 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() - ) diff --git a/src/icalendar/tests/test_issue_116.py b/src/icalendar/tests/test_issue_116.py new file mode 100644 index 0000000..2df8451 --- /dev/null +++ b/src/icalendar/tests/test_issue_116.py @@ -0,0 +1,35 @@ +import unittest + +import datetime +import icalendar +import os +import pytz +import pytest +from dateutil import tz + + +def test_issue_116(): + """Issue #116/#117 - How to add 'X-APPLE-STRUCTURED-LOCATION' + https://github.com/collective/icalendar/issues/116 + https://github.com/collective/icalendar/issues/117 + """ + event = icalendar.Event() + event.add( + "X-APPLE-STRUCTURED-LOCATION", + "geo:-33.868900,151.207000", + parameters={ + "VALUE": "URI", + "X-ADDRESS": "367 George Street Sydney CBD NSW 2000", + "X-APPLE-RADIUS": "72", + "X-TITLE": "367 George Street" + } + ) + assert event.to_ical() == ( + b'BEGIN:VEVENT\r\nX-APPLE-STRUCTURED-LOCATION;VALUE=URI;' + b'X-ADDRESS="367 George Street Sydney \r\n CBD NSW 2000";' + b'X-APPLE-RADIUS=72;X-TITLE="367 George Street":' + b'geo:-33.868900\r\n \\,151.207000\r\nEND:VEVENT\r\n' + ) + + # roundtrip + assert event.to_ical() == icalendar.Event.from_ical(event.to_ical()).to_ical()