Skip to content

Commit

Permalink
Add placeholder tests for ParsedRequest [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
DevL committed Mar 7, 2024
1 parent df5d812 commit fe09136
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/parsed_request_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,28 @@ def test_parsing_a_prepared_request(prepared_request):
assert parsed.url_params == {"a": "1", "b": "2", "c": ["3", "4", "5"]}
assert parsed.json == {"some": "data"}
assert parsed.text == '{"some": "data"}'


@pytest.mark.skip
def test_endpoint():
pass


@pytest.mark.skip
def test_url_params():
pass


@pytest.mark.skip
def test_json_with_an_empty_body():
pass


@pytest.mark.skip
def test_json_with_an_invalid_json_body():
pass


@pytest.mark.skip
def test_text_with_an_empty_body():
pass

0 comments on commit fe09136

Please sign in to comment.