group-wbl/.venv/lib/python3.13/site-packages/fsspec/tests/abstract/pipe.py
2026-01-09 09:48:03 +08:00

12 lines
402 B
Python

import pytest
class AbstractPipeTests:
def test_pipe_exclusive(self, fs, fs_target):
fs.pipe_file(fs_target, b"data")
assert fs.cat_file(fs_target) == b"data"
with pytest.raises(FileExistsError):
fs.pipe_file(fs_target, b"data", mode="create")
fs.pipe_file(fs_target, b"new data", mode="overwrite")
assert fs.cat_file(fs_target) == b"new data"