def test_valid_api_article_comments():
    url = route.post(post_id=224341009, addition='comments')
    assert requests.get(url).ok
def test_valid_api_article():
    url = route.post(post_id=224341009)
    assert requests.get(url).ok
Beispiel #3
0
def test_valid_api_article_comments():
    url = route.post(post_id=_post_id, addition='comments')
    assert requests.get(url, headers=headers).ok
Beispiel #4
0
def test_valid_api_article():
    url = route.post(post_id=_post_id)
    assert requests.get(url, headers=headers).ok
Beispiel #5
0
def test_valid_api_article_comments():
    url = route.post(post_id=_post_id, addition='comments')
    assert requests.get(url, headers=headers).ok
Beispiel #6
0
def test_valid_api_article():
    url = route.post(post_id=_post_id)
    assert requests.get(url, headers=headers).ok