Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for embedded_value (0.08 sec)

  1. tests/test_compat.py

            return {
                "value": req.value or None,
                "embedded_value": req.embedded_model.value or None,
            }
    
        client = TestClient(app)
    
        response = client.post("/", json={})
        assert response.status_code == 200, response.text
        assert response.json() == {
            "value": None,
            "embedded_value": None,
        }
    
        response2 = client.post(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top