From 938628b094aa7f7446d810763bebd820db293204 Mon Sep 17 00:00:00 2001 From: "Kirill A. Korinsky" Date: Thu, 30 May 2024 14:09:37 +0200 Subject: [PATCH] Add missed `HAVE_REFLINK` in test_files.py --- test/test_files.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_files.py b/test/test_files.py index 1b898dd9f..46aebe54f 100644 --- a/test/test_files.py +++ b/test/test_files.py @@ -88,10 +88,12 @@ class MoveTest(_common.TestCase): self.i.move(operation=MoveOperation.COPY) self.assertExists(self.path) + @unittest.skipUnless(_common.HAVE_REFLINK, "need reflink") def test_reflink_arrives(self): self.i.move(operation=MoveOperation.REFLINK_AUTO) self.assertExists(self.dest) + @unittest.skipUnless(_common.HAVE_REFLINK, "need reflink") def test_reflink_does_not_depart(self): self.i.move(operation=MoveOperation.REFLINK_AUTO) self.assertExists(self.path)