Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_header_json_list (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_json_type.py

        response = client.get(
            "/query-json-list", params={"items": json.dumps(["abc", "def"])}
        )
        assert response.status_code == 200, response.text
        assert response.json() == ["abc", "def"]
    
    
    def test_header_json_list():
        response = client.get(
            "/header-json-list", headers={"x-items": json.dumps(["abc", "def"])}
        )
        assert response.status_code == 200, response.text
        assert response.json() == ["abc", "def"]
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 18:41:43 GMT 2026
    - 1.7K bytes
    - Click Count (0)
Back to Top