Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 70 for parametrizar (0.06 sec)

  1. tests/test_security_oauth2_optional.py

                    "type": "missing",
                    "loc": ["body", "grant_type"],
                    "msg": "Field required",
                    "input": None,
                }
            ]
        }
    
    
    @pytest.mark.parametrize(
        argnames=["grant_type"],
        argvalues=[
            pytest.param("incorrect", id="incorrect value"),
            pytest.param("passwordblah", id="password with suffix"),
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. tests/test_annotated.py

                "loc": ["query", "foo"],
                "msg": "String should have at least 1 character",
                "type": "string_too_short",
                "input": "",
            }
        ]
    }
    
    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/default", 200, {"foo": "foo"}),
            ("/default?foo=bar", 200, {"foo": "bar"}),
            ("/required?foo=bar", 200, {"foo": "bar"}),
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  3. tests/test_dependency_partial.py

                    "partial-asynchronous-method-gen-dependency",
                )
            ),
        ],
    ) -> str:
        return value
    
    
    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "route,value",
        [
            ("/partial-function-dependency", "partial-function-dependency"),
            (
                "/partial-async-function-dependency",
                "partial-async-function-dependency",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  4. tests/test_security_oauth2.py

                    "type": "missing",
                    "loc": ["body", "grant_type"],
                    "msg": "Field required",
                    "input": None,
                }
            ]
        }
    
    
    @pytest.mark.parametrize(
        argnames=["grant_type"],
        argvalues=[
            pytest.param("incorrect", id="incorrect value"),
            pytest.param("passwordblah", id="password with suffix"),
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 9K bytes
    - Viewed (0)
  5. tests/test_security_oauth2_optional_description.py

                    "type": "missing",
                    "loc": ["body", "grant_type"],
                    "msg": "Field required",
                    "input": None,
                }
            ]
        }
    
    
    @pytest.mark.parametrize(
        argnames=["grant_type"],
        argvalues=[
            pytest.param("incorrect", id="incorrect value"),
            pytest.param("passwordblah", id="password with suffix"),
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. tests/test_dependency_overrides.py

        response = client.get("/router-decorator-depends/?q=foo&skip=100&limit=200")
        assert response.status_code == 200
        assert response.json() == {"in": "router-decorator-depends"}
    
    
    @pytest.mark.parametrize(
        "url,status_code,expected",
        [
            (
                "/main-depends/",
                200,
                {"in": "main-depends", "params": {"q": None, "skip": 5, "limit": 10}},
            ),
            (
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  7. tests/test_include_router_defaults_overrides.py

        assert not override3 or "x-level3" in response.headers
    
    
    @pytest.mark.parametrize("override1", [True, False])
    @pytest.mark.parametrize("override2", [True, False])
    @pytest.mark.parametrize("override3", [True, False])
    @pytest.mark.parametrize("override4", [True, False])
    @pytest.mark.parametrize("override5", [True, False])
    def test_paths_level5(override1, override2, override3, override4, override5):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 358.6K bytes
    - Viewed (0)
  8. tests/test_dependency_wrapped.py

    
    @app.get("/async-wrapped-endpoint-async-wrapper/")
    @noop_wrap_async
    async def get_async_wrapped_endpoint_async_wrapper():
        return True
    
    
    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "route",
        [
            "/wrapped-dependency/",
            "/wrapped-gen-dependency/",
            "/async-wrapped-dependency/",
            "/async-wrapped-gen-dependency/",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  9. tests/test_application.py

    import pytest
    from fastapi.testclient import TestClient
    
    from .main import app
    
    client = TestClient(app)
    
    
    @pytest.mark.parametrize(
        "path,expected_status,expected_response",
        [
            ("/api_route", 200, {"message": "Hello World"}),
            ("/non_decorated_route", 200, {"message": "Hello World"}),
            ("/nonexistent", 404, {"detail": "Not Found"}),
        ],
    )
    def test_get_path(path, expected_status, expected_response):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 51.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.11.md

    * Add RequestedToCapacityRatioPriority priority function. Function is parametrized with set of points mapping node utilization (0-100) to score (0-10). ([#63929](https://github.com/kubernetes/kubernetes/pull/63929), [@losipiuk](https://github.com/losipiuk))
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top