示例#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
示例#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
示例#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
示例#4
0
 def test_update_benchmark_link_status(self, get_uuid):
     response = update_benchmark_link(get_uuid)
     assert response.status_code == 200