diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-05-26 10:33:04 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-05-26 10:33:04 +0200 |
commit | 6b9720844aaa86ad25a77c0821dcdbc772937065 (patch) | |
tree | 50559b9131be478d6907474e0f612e903ba44d34 /aerogramme/tests/common | |
parent | 52f870633c2cab8a4aeeec74792774931139b8b5 (diff) | |
download | aerogramme-6b9720844aaa86ad25a77c0821dcdbc772937065.tar.gz aerogramme-6b9720844aaa86ad25a77c0821dcdbc772937065.zip |
better support for time-range
Diffstat (limited to 'aerogramme/tests/common')
-rw-r--r-- | aerogramme/tests/common/constants.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/aerogramme/tests/common/constants.rs b/aerogramme/tests/common/constants.rs index 8874876..91ee159 100644 --- a/aerogramme/tests/common/constants.rs +++ b/aerogramme/tests/common/constants.rs @@ -158,3 +158,20 @@ UID:E10BA47467C5C69BB74E8725@example.com END:VTODO END:VCALENDAR "#; + +pub static ICAL_RFC6: &[u8] = br#"BEGIN:VCALENDAR +VERSION:2.0 +PRODID:-//Example Corp.//CalDAV Client//EN +BEGIN:VTODO +DTSTART:20060205T235335Z +DUE;VALUE=DATE:20060104 +STATUS:NEEDS-ACTION +SUMMARY:Task #1 +UID:DDDEEB7915FA61233B861457@example.com +BEGIN:VALARM +ACTION:AUDIO +TRIGGER;RELATED=START:-PT10M +END:VALARM +END:VTODO +END:VCALENDAR +"#; |