We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7842c06 commit 4f3fb34Copy full SHA for 4f3fb34
tests/test_paths_stdlib.py
@@ -550,18 +550,6 @@ def test_is_fifo_false(BASE):
550
assert not ((P / "fileA" / "bah").is_fifo())
551
552
553
-@pytest.mark.skipif(not hasattr(os, "mkfifo"), reason="os.mkfifo() required")
554
-def test_is_fifo_true(BASE):
555
- P = PathPlus(BASE) / "myfifo"
556
- try:
557
- os.mkfifo(str(P))
558
- except PermissionError as e:
559
- pytest.skip("os.mkfifo(): %s" % e)
560
- assert (P.is_fifo())
561
- assert not (P.is_socket())
562
- assert not (P.is_file())
563
-
564
565
def test_is_socket_false(BASE):
566
P = PathPlus(BASE)
567
assert not (P / "fileA").is_socket()
0 commit comments