Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SubPlumbus (0.09 sec)

  1. tests/test_openapi_separate_input_output_schemas.py

        )
    
    
    def test_create_item_with_sub():
        client = get_app_client()
        client_no = get_app_client(separate_input_output_schemas=False)
        data = {
            "name": "Plumbus",
            "sub": {"subname": "SubPlumbus", "sub_description": "Sub WTF"},
        }
        response = client.post("/items/", json=data)
        response2 = client_no.post("/items/", json=data)
        assert response.status_code == response2.status_code == 200, response.text
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top