Example #1
0
 def test_user_id_update_benchmark_link(self, get_uuid):
     response = update_benchmark_link(get_uuid)
     a = json.loads(response.text)['data']['link']['createUserId']
     assert a == token.user_id
Example #2
0
 def test_location_id_update_benchmark_link(self, get_uuid):
     response = update_benchmark_link(get_uuid)
     a = json.loads(response.text)['data']['link']['benchmarkLocationId']
     assert a == benchmarkLocationId
Example #3
0
 def test_data_update_benchmark_link(self, get_uuid):
     response = update_benchmark_link(get_uuid)
     a = json.loads(response.text)['data']['link']['data']
     assert a == data_update
Example #4
0
 def test_update_benchmark_link_status(self, get_uuid):
     response = update_benchmark_link(get_uuid)
     assert response.status_code == 200