Add first work package for REST API implementation
[anna.git] / example / diameter / launcher / resources / rest_api / ct / node-management / node-auto_test.py
1 import pytest
2
3 def test_001_i_want_to_set_automatic_node_mode_at_adml(admlc):
4
5   responseBodyRef = { "success":"true", "response":"Working node has been set to automatic" }
6
7   # Send POST
8   response = admlc.post("/node-auto")
9
10   # Verify response
11   admlc.assert_response__status_body_headers(response, 200, responseBodyRef)