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)