Skip to content

Commit

Permalink
Add test for the case
Browse files Browse the repository at this point in the history
  • Loading branch information
isidentical committed Dec 17, 2021
1 parent cbfcd8e commit e7f0699
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_not_supported.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,9 @@ def test_symlink_to():
path = S3Path('/fake-bucket/fake-key')
with pytest.raises(NotImplementedError):
path.symlink_to('file_name')


def test_stat():
path = S3Path('/fake-bucket/fake-key')
with pytest.raises(NotImplementedError):
path.stat(follow_symlinks=False)

0 comments on commit e7f0699

Please sign in to comment.