~facundo/magicicada-client/changes-for-xenial

« back to all changes in this revision

Viewing changes to ubuntuone/platform/tests/__init__.py

  • Committer: Magicicada Bot
  • Author(s): Natalia
  • Date: 2016-05-30 15:43:30 UTC
  • mfrom: (1418.1.21 no-sso-client)
  • Revision ID: magicicada_bot-20160530154330-b4his4s3wlucu7zv
[r=facundo] - Decouple client code from ubuntu-sso-client code. Copied and made an initial cleanup on the networkstate, utils and keyring modules.
- Removed completely dependencies with oauthlibs.
- Moved tests/ folder to inside ubuntuone/ proper folders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import sys
29
29
 
30
30
if sys.platform.startswith('linux'):
31
 
    from tests.platform.ipc import test_linux
 
31
    from ubuntuone.platform.tests.ipc import test_linux
32
32
    ipc_source = test_linux
33
33
else:
34
 
    from tests.platform.ipc import test_perspective_broker
 
34
    from ubuntuone.platform.tests.ipc import test_perspective_broker
35
35
    ipc_source = test_perspective_broker
36
36
 
37
37
IPCTestCase = ipc_source.IPCTestCase