Add third work package for REST API implementation
[anna.git] / example / diameter / launcher / resources / rest_api / ct / fsm-testing / test-clear_test.py
diff --git a/example/diameter/launcher/resources/rest_api/ct/fsm-testing/test-clear_test.py b/example/diameter/launcher/resources/rest_api/ct/fsm-testing/test-clear_test.py
new file mode 100644 (file)
index 0000000..2c07810
--- /dev/null
@@ -0,0 +1,14 @@
+import pytest
+
+
+@pytest.mark.run(order=1)
+def test_001_i_want_to_test_pool_when_it_is_already_empty(admlc):
+
+  responseBodyRef = { "success":"true", "response":"There are not programmed test cases to be removed" }
+
+  # Send POST
+  response = admlc.post("/test-clear")
+
+  # Verify response
+  admlc.assert_response__status_body_headers(response, 200, responseBodyRef)
+