Scenario:
* def Test_assignment_type = 'ALL'
* def TEST_NODE_ID = '123455667'
* def list = [ '123', '1234', '12345' ]
* def gId_list = karate.mapWithKey(list, 'HOOK_TEST_LOCATION_GID')
* callonce read('classpath:hook/delete-assignments-hook.feature') {HOOK_TEST_LOCATION_ID: "#(TEST_NODE_ID)", HOOK_TEST_ASSIGNMENT_TYPE: "#(Test_assignment_type)"}
delete-assignments-hook.feature:
Scenario:
* Given path '/nodes/'+HOOK_TEST_LOCATION_ID+'/locations/'+HOOK_TEST_LOCATION_GID+'/assignments'
* And param assignmentType = HOOK_TEST_ASSIGNMENT_TYPE
* When method delete
* Then assert responseStatus == 204 || responseStatus == 404
how to pass gId_list in my delete-assignments-hook.feature, so that delete api runs for each value in the list.