summaryrefslogtreecommitdiff
path: root/test-sftpfs
diff options
context:
space:
mode:
Diffstat (limited to 'test-sftpfs')
-rwxr-xr-xtest-sftpfs3
1 files changed, 3 insertions, 0 deletions
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()