Add a __str__ and __repr__ method to Path

This commit is contained in:
Gergely Polonkai 2022-05-05 13:38:53 +02:00
parent fcf9911121
commit 5e57b24200
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
2 changed files with 18 additions and 0 deletions

View File

@ -69,3 +69,9 @@ class Path:
return True
return False
def __str__(self) -> str:
return self.path
def __repr__(self) -> str:
return f'<Path {self.path}>'

View File

@ -94,3 +94,15 @@ def test_can_write(author: str, path: str, allowed: bool) -> None:
identity = Identity.from_address(author)
assert path_obj.can_write(identity) is allowed
def test_str() -> None:
"""Test the __str__ method"""
assert str(Path('/test.txt')) == '/test.txt'
def test_repr() -> None:
"""Test the __repr__ method"""
assert repr(Path('/test.txt')) == '<Path /test.txt>'