From 06bf645db1f67343b5b50bf92b721ccc8f9c0d72 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 5 May 2011 18:13:25 +0100 Subject: Implement support for FIFO files. (Device nodes are still not supported.) --- test-sftpfs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test-sftpfs') diff --git a/test-sftpfs b/test-sftpfs index becf1f4f..c8632ad3 100755 --- a/test-sftpfs +++ b/test-sftpfs @@ -56,6 +56,9 @@ class SftpTests(unittest.TestCase, obnamlib.VfsTests): def test_link_creates_hard_link(self): pass # sftp does not support hardlinking, so not testing it + def test_mknod_creates_fifo(self): + self.assertRaises(NotImplementedError, self.fs.mknod, 'foo', 0) + if __name__ == '__main__': unittest.main() -- cgit v1.2.1