コード例 #1
0
def test_get_annotation_date_render_function(annotation_times, result):
    annotations = [((None, None, None), {
        "from": s,
        "until": e
    }) for s, e in annotation_times]
    assert availability.get_annotation_date_render_function(
        annotations, {"range":
                      ((1543446000, 1543446000 + 86399), "bla")}) == result
コード例 #2
0
ファイル: test_availability.py プロジェクト: PLUTEX/checkmk
def test_get_annotation_date_render_function(annotation_times, result):
    annotations = [((None, None, None), {"from": s, "until": e}) for s, e in annotation_times]
    with on_time(1572253746, "CET"):
        assert (
            availability.get_annotation_date_render_function(  # pylint:disable=comparison-with-callable
                annotations, {"range": ((1543446000, 1543446000 + 86399), "bla")}
            )
            == result
        )