Skip to content

Commit

Permalink
tests: add placeholders for ulink/rmdir (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Dec 28, 2023
1 parent c51f600 commit 590bc5c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dvc_oss/tests/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,9 @@ def write_bytes(self, contents):

def read_bytes(self):
raise NotImplementedError

def unlink(self, missing_ok: bool = False) -> None:
raise NotImplementedError

def rmdir(self, recursive: bool = True) -> None:
raise NotImplementedError

0 comments on commit 590bc5c

Please sign in to comment.