Irfanuddin Shafi Ahmed
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
tests/test_jsonable_encoder.py
|
@ -247,8 +247,9 @@ def test_encode_model_with_pure_path(): |
|
|
class Config: |
|
|
class Config: |
|
|
arbitrary_types_allowed = True |
|
|
arbitrary_types_allowed = True |
|
|
|
|
|
|
|
|
obj = ModelWithPath(path=PurePath("/foo", "bar")) |
|
|
test_path = PurePath("/foo", "bar") |
|
|
assert jsonable_encoder(obj) == {"path": "/foo/bar"} |
|
|
obj = ModelWithPath(path=test_path) |
|
|
|
|
|
assert jsonable_encoder(obj) == {"path": str(test_path)} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_encode_model_with_pure_posix_path(): |
|
|
def test_encode_model_with_pure_posix_path(): |
|
|