Add third work package for REST API implementation
[anna.git] / example / diameter / launcher / resources / rest_api / ct / fsm-testing / test-clear_test.py
1 import pytest
2
3
4 @pytest.mark.run(order=1)
5 def test_001_i_want_to_test_pool_when_it_is_already_empty(admlc):
6
7   responseBodyRef = { "success":"true", "response":"There are not programmed test cases to be removed" }
8
9   # Send POST
10   response = admlc.post("/test-clear")
11
12   # Verify response
13   admlc.assert_response__status_body_headers(response, 200, responseBodyRef)
14