aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_reports_collection.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_reports_collection.py')
-rw-r--r--tests/test_reports_collection.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_reports_collection.py b/tests/test_reports_collection.py
new file mode 100644
index 0000000..264b6b4
--- /dev/null
+++ b/tests/test_reports_collection.py
@@ -0,0 +1,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"}