Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ModelWithRoot (0.05 sec)

  1. tests/test_jsonable_encoder.py

        obj = ModelWithPath(path=PureWindowsPath("/foo", "bar"))
        assert jsonable_encoder(obj) == {"path": "\\foo\\bar"}
    
    
    @needs_pydanticv1
    def test_encode_root():
        class ModelWithRoot(BaseModel):
            __root__: str
    
        model = ModelWithRoot(__root__="Foo")
        assert jsonable_encoder(model) == "Foo"
    
    
    @needs_pydanticv2
    def test_decimal_encoder_float():
        data = {"value": Decimal(1.23)}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top