twisted.internet.inotify.IN_MOVE_SELF - python examples

Here are the examples of the python api twisted.internet.inotify.IN_MOVE_SELF taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 View Complete Implementation : test_inotify.py
Copyright MIT License
Author : wistbean
    def test_moveSelf(self):
        """
        Renaming the monitored directory itself sends an
        C{inotify.IN_MOVE_SELF} event to the callback.
        """
        def operation(path):
            path.moveTo(filepath.FilePath(self.mktemp()))

        return self._notificationTest(
            inotify.IN_MOVE_SELF, operation, expectedPath=self.dirname)