adding test for Vjournal filtering

This commit is contained in:
Nicolas Bonfante 2016-06-15 16:17:51 +02:00
commit 1613c4955f
13 changed files with 179 additions and 13 deletions

View file

@ -304,13 +304,14 @@ def _time_range_match(vobject_item, filter_, child_name):
completed = completed.value
return start <= completed and end >= completed
elif created is not None:
# Line 7
created = created.value
return end < created
return end > created
else:
return True
elif child_name == "VJOURNAL":
dtstart = getattr(child, "dstart", None)
dtstart = getattr(child, "dtstart", None)
if dtstart is not None:
dtstart = dtstart.value
if not isinstance(dtstart, datetime):