~didrocks/ubuntuone-client/use_result_var

« 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-11 16:18:11 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20110211161811-lbelxu332e8r2dov
Tags: 1.5.4-0ubuntu1
* New upstream release.
  - Files still get downloaded from unsubscribed folder (LP: #682878)
  - Add subscription capabilities to shares (LP: #708335)
  - Nautilus offers Publish option within other's shares (LP: #712674)
  - Shares dir name may not be unique (LP: #715776)
  - Send a notification when new Volume is available (LP: #702055)
  - Add messaging menu entry for new Volumes (LP: #702075)
  - Aggregate notifications for completed operations (LP: #702128)
  - Send a notification for new Share offers (LP: #702138)
  - Add messaging menu entry for new Share offers (LP: #702144)
* Remove ubuntuone-client-tools as u1sync has been moved out.
* Simplify python package as we don't have multiple python packages now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""Platform related code."""
 
2
import sys
 
3
 
 
4
setup_action_queue_test = None
 
5
setup_main_test = None
 
6
get_main_params = None 
 
7
 
 
8
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
    
 
14
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
    
1
20