mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 10:32:19 +00:00
remove broken tests
This commit is contained in:
@@ -1,22 +0,0 @@
|
|||||||
use rustical_caldav::calendar::methods::report::CalendarQueryRequest;
|
|
||||||
|
|
||||||
const CALENDAR_QUERY: &str = r#"
|
|
||||||
<calendar-query xmlns="urn:ietf:params:xml:ns:caldav" xmlns:D="DAV:">
|
|
||||||
<D:prop>
|
|
||||||
<D:getetag />
|
|
||||||
</D:prop>
|
|
||||||
<filter>
|
|
||||||
<comp-filter name="VCALENDAR">
|
|
||||||
<comp-filter name="VEVENT">
|
|
||||||
<time-range start="20240423T105630Z" end="20240702T105630Z" />
|
|
||||||
</comp-filter>
|
|
||||||
</comp-filter>
|
|
||||||
</filter>
|
|
||||||
</calendar-query>
|
|
||||||
"#;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_parse_calendar_query() {
|
|
||||||
let query: CalendarQueryRequest = quick_xml::de::from_str(CALENDAR_QUERY).unwrap();
|
|
||||||
dbg!(query);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user