MC
Size: a a a
MC
BK
BK
BK
V
MC
BK
BK
ТЭ
ИС
BK
@feature('Delete comment')
def test_delete_comment(self, api_v2, _mega_fixture):
print(_mega_fixture['pm_id'])BK
ИС
BK
S
BK
ИС
@pytest.fixture
def fresh_ai_id():
with open('action_item_id.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def fresh_analytic_ai_id():
with open('analytic_action_item_id.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def fresh_comment_id():
with open('comment_ai_id.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def fresh_report_id():
with open('report_item_id.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def fresh_detached_sensor_id():
with open('detached_sensor_id.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def _fresh_access_token():
with open(f'{GRABBED_DIR}/new_user_access_token.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def _fresh_user_id():
with open(f'{GRABBED_DIR}/new_user_id.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def _fresh_access_token_by_pm():
with open(f'{GRABBED_DIR}/new_user_access_token_by_pm.txt', 'r') as outfile:
return outfile.read()
@pytest.fixture
def _pm_ai_id():
with open(f'{GRABBED_DIR}/pm_ai_id.txt', 'r') as outfile:
return outfile.read()
BK

BK
S