~ubuntu-branches/ubuntu/oneiric/ubuntuone-client/oneiric

« back to all changes in this revision

Viewing changes to tests/platform/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-02-23 18:34:09 UTC
  • mfrom: (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20110223183409-535o7yo165wbjmca
Tags: 1.5.5-0ubuntu1
* New upstream release.
  - Subscribing to a RO share will not download content (LP: #712528)
  - Can't synchronize "~/Ubuntu One Music" (LP: #714976)
  - Syncdaemon needs to show progress in Unity launcher (LP: #702116)
  - Notifications say "your cloud" (LP: #715887)
  - No longer requires python-libproxy
  - Recommend unity and indicator libs by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
setup_action_queue_test = None
5
5
setup_main_test = None
6
6
get_main_params = None 
 
7
_GeneralINotifyProcessor = None
 
8
platform_mangled_path = None
 
9
IPCTestCase = None
7
10
 
8
11
if sys.platform == 'linux2':
9
 
    from tests.platform import linux 
10
 
    setup_action_queue_test = linux.setup_action_queue_test 
11
 
    setup_main_test = linux.setup_main_test 
12
 
    get_main_params = linux.get_main_params 
13
 
    
 
12
    from tests.platform import linux as linux_test
 
13
    setup_action_queue_test = linux_test.setup_action_queue_test 
 
14
    setup_main_test = linux_test.setup_main_test 
 
15
    get_main_params = linux_test.get_main_params
 
16
    platform_mangled_path = linux_test.platform_mangled_path 
 
17
    from ubuntuone.platform.linux import filesystem_notifications
 
18
    _GeneralINotifyProcessor = filesystem_notifications._GeneralINotifyProcessor
 
19
    from tests.platform.linux.test_dbus import DBusTwistedTestCase
 
20
    IPCTestCase = DBusTwistedTestCase
14
21
else:
15
 
    from tests.platform import windows
16
 
    setup_action_queue_test = windows.setup_action_queue_test 
17
 
    setup_main_test = windows.setup_main_test 
18
 
    get_main_params = windows.get_main_params 
19
 
    
 
22
    from tests.platform import windows as windows_test
 
23
    setup_action_queue_test = windows_test.setup_action_queue_test 
 
24
    setup_main_test = windows_test.setup_main_test 
 
25
    get_main_params = windows_test.get_main_params 
 
26
    platform_mangled_path = windows_test.platform_mangled_path 
 
27
    from ubuntuone.platform.windows import filesystem_notifications
 
28
    _GeneralINotifyProcessor = filesystem_notifications.NotifyProcessor 
 
29
    from tests.platform.windows.test_ipc import PerspectiveBrokerTestCase
 
30
    IPCTestCase = PerspectiveBrokerTestCase
20
31