mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 05:37:37 +03:00
Test timezone with minutes and seconds
This commit is contained in:
parent
e6e3db6e05
commit
70e7363be6
2 changed files with 39 additions and 0 deletions
|
@ -1405,6 +1405,14 @@ class BaseRequestsMixIn:
|
|||
assert status == 404
|
||||
assert headers.get("test") == "123"
|
||||
|
||||
def test_timezone_seconds(self):
|
||||
"""Verify that timezones with minutes and seconds work."""
|
||||
status, _, _ = self.request("MKCALENDAR", "/calendar.ics/")
|
||||
assert status == 201
|
||||
event = get_file_content("event_timezone_seconds.ics")
|
||||
status, _, _ = self.request("PUT", "/calendar.ics/event.ics", event)
|
||||
assert status == 201
|
||||
|
||||
def test_missing_uid(self):
|
||||
"""Verify that missing UIDs are added in a stable manner."""
|
||||
status, _, _ = self.request("MKCALENDAR", "/calendar.ics/")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue