File: test_issue_28_timezone_with_z.py

package info (click to toggle)
python-recurring-ical-events 3.3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,128 kB
  • sloc: python: 2,896; sh: 15; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""These tests are for Issue 28
https://github.com/niccokunzmann/python-recurring-ical-events/issues/28

"""


def test_expected_amount_of_events(calendars):
    events = calendars.issue_28_rrule_with_UTC_endinginZ.between(
        (2020, 5, 25),
        (2020, 9, 5),
    )
    assert (
        len(events) == 15
    ), "Microsoft Outlook online imports this calendar and shows that there are 15 events."


def test_modification_of_event(calendars):
    events = calendars.issue_28_rrule_with_UTC_endinginZ.between(
        (2020, 9, 3),
        (2020, 9, 5),
    )
    assert len(events) == 1, "Microsoft Outlook online shows one event moved."