You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
402 B
12 lines
402 B
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"
|