~nataliabidart/magicicada-client/fix-travis-ubuntuone-clientdefs

« back to all changes in this revision

Viewing changes to magicicadaclient/platform/tests/filesystem_notifications/test_darwin.py

  • Committer: Natalia
  • Date: 2018-05-19 20:44:54 UTC
  • mto: This revision was merged to the branch mainline in revision 1445.
  • Revision ID: natalia.bidart@ubuntu.com-20180519204454-fliiqyexj67r7fp9
- Rename python package to magicicadaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
import fsevents
40
40
 
41
 
from contrib.testing.testcase import BaseTwistedTestCase
 
41
from magicicadaclient.testing.testcase import BaseTwistedTestCase
42
42
 
43
43
from ubuntuone.devtools.handlers import MementoHandler
44
 
from ubuntuone.platform.filesystem_notifications.monitor import (
 
44
from magicicadaclient.platform.filesystem_notifications.monitor import (
45
45
    common,
46
46
)
47
 
from ubuntuone.platform.filesystem_notifications.monitor.darwin import (
 
47
from magicicadaclient.platform.filesystem_notifications.monitor.darwin import (
48
48
    fsevents_client as filesystem_notifications,
49
49
)
50
 
from ubuntuone.platform.filesystem_notifications import notify_processor
51
 
from ubuntuone.platform.filesystem_notifications.monitor.common import (
 
50
from magicicadaclient.platform.filesystem_notifications import notify_processor
 
51
from magicicadaclient.platform.filesystem_notifications.monitor.common import (
52
52
    Watch,
53
53
    WatchManager,
54
54
)
55
 
from ubuntuone.platform.filesystem_notifications.pyinotify_agnostic import (
 
55
from magicicadaclient.platform.filesystem_notifications.pyinotify_agnostic import (
56
56
    ProcessEvent,
57
57
    IN_CLOSE_WRITE,
58
58
    IN_CREATE,
59
59
    IN_DELETE,
60
60
    IN_OPEN,
61
61
)
62
 
from ubuntuone.platform.tests.filesystem_notifications import (
 
62
from magicicadaclient.platform.tests.filesystem_notifications import (
63
63
    BaseFSMonitorTestCase,
64
64
    common as common_tests,
65
65
)