mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 05:37:37 +03:00
Cosmetics
This commit is contained in:
parent
7ed5122636
commit
e0247f8f92
2 changed files with 3 additions and 38 deletions
|
@ -129,15 +129,14 @@ class BaseRequestsMixIn:
|
|||
"""Update an event."""
|
||||
self.mkcalendar("/calendar.ics/")
|
||||
event = get_file_content("event1.ics")
|
||||
event_modified = get_file_content("event1_modified.ics")
|
||||
path = "/calendar.ics/event1.ics"
|
||||
self.put(path, event)
|
||||
event = get_file_content("event1-prime.ics")
|
||||
self.put(path, event)
|
||||
self.put(path, event_modified)
|
||||
_, answer = self.get("/calendar.ics/")
|
||||
assert answer.count("BEGIN:VEVENT") == 1
|
||||
_, answer = self.get(path)
|
||||
assert "DTSTART;TZID=Europe/Paris:20140901T180000" in answer
|
||||
assert "DTEND;TZID=Europe/Paris:20140901T210000" in answer
|
||||
assert "DTSTAMP:20130902T150159Z" in answer
|
||||
|
||||
def test_update_event_uid_event(self):
|
||||
"""Update an event with a different UID."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue