3 @pytest.mark.run(order=1)
4 @pytest.mark.xfail(reason="This will fail if already provisioned (if you want success here, restart the ADML HTTP Service)")
5 def test_001_given_services_json_representation_i_want_to_load_it_through_adml_service(resources, admlc):
7 requestBody = resources("servicesJson-request.json")
8 responseBodyRef = { "success":"true", "response":"loaded services correctly" }
11 response = admlc.post("/services", requestBody)
14 admlc.assert_response__status_body_headers(response, 200, responseBodyRef)