aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_reports_collection.py
blob: 264b6b4222a4593e6481b152900cb270370b3ded (plain)
1
2
3
4
5
6
7
8
9
10
from onaptests.steps.reports_collection import ReportsCollection


def test_reports_collection():
    rc = ReportsCollection()
    assert rc.report == {}

    rc.put({"a": "b"})
    assert rc.report == {"a": "b"}