Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_encode_model_with_pure_windows_path (0.12 sec)

  1. tests/test_jsonable_encoder.py

            model_config = {"arbitrary_types_allowed": True}
    
        obj = ModelWithPath(path=PurePosixPath("/foo", "bar"))
        assert jsonable_encoder(obj) == {"path": "/foo/bar"}
    
    
    def test_encode_model_with_pure_windows_path():
        class ModelWithPath(BaseModel):
            path: PureWindowsPath
    
            model_config = {"arbitrary_types_allowed": True}
    
        obj = ModelWithPath(path=PureWindowsPath("/foo", "bar"))
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top