Add first work package for REST API implementation
[anna.git] / example / diameter / launcher / resources / rest_api / ct / snapshots / collect_test.py
1 import pytest
2
3
4 def test_001_collect_oam_and_statistics_at_adml(admlc):
5
6   responseBodyRef = { "success":"true", "response":"All process counters & statistic information have been reset" }
7
8   # Send POST
9   response = admlc.post("/collect")
10
11   # Verify response
12   admlc.assert_response__status_body_headers(response, 200, responseBodyRef)