~ubuntu-branches/ubuntu/oneiric/ubuntuone-control-panel/oneiric

« back to all changes in this revision

Viewing changes to ubuntuone/controlpanel/gui/tests/__init__.py

* New upstream release:
  [ Alejandro J. Cura <alecu@canonical.com>]
    - Do not throw a webclient error when closing
      (LP: #845105).
  [ Natalia B. Bidart <natalia.bidart@canonical.com> ]
    - Removed all code related to Bookmarks (LP: #850142).
    - Replaces references to "Evolution" by "Thunderbird" (LP: #849494).
  [ Rodney Dawes <rodney.dawes@canonical.com> ]
    - Don't install a .desktop file for control panel
      (part of LP: #838778).
    - Point the indicator/Unity API at the installer .desktop file
      (part of LP: #838778).
    - Set the WMCLASS so Unity will fall back properly
      (part of LP: #838778).
    - Fix a few grammar mistakes (LP: #835093).
    - Don't show the "Get NGB free!" label on "Join now" button at all
      (LP: #819955).
* debian/control:
  - ubuntuone-control-panel-gtk depends now on ubuntuone-installer >= 2.0.0.
  - require ubuntuone-client >= 2.0.0.
  - require ubuntu-sso-client >= 1.4.0.
  - no longer install a .desktop file (will be installed by ubuntuone-installer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
FAKE_SHARES_INFO = [
67
67
    # backend send this ordered by path
68
68
    {u'volume_id': u'1234', u'name': u'do',
69
 
     u'path': os.path.join(USER_HOME, '.local', 'share', 'ubuntuone',
 
69
     u'realpath': os.path.join(USER_HOME, '.local', 'share', 'ubuntuone',
70
70
                           'shares', 'do from Other User'),
 
71
     u'path': os.path.join(ROOT_PATH, 'Shared With Me', 'do from Other User'),
71
72
     u'subscribed': u'', u'type': ControlBackend.SHARE_TYPE,
72
73
     u'display_name': u'do'},
73
74
    {u'volume_id': u'5678', u'name': u're',
74
 
     u'path': os.path.join(USER_HOME, '.local', 'share', 'ubuntuone',
 
75
     u'realpath': os.path.join(USER_HOME, '.local', 'share', 'ubuntuone',
75
76
                           'shares', 're from Other User'),
 
77
     u'path': os.path.join(ROOT_PATH, 'Shared With Me', 're from Other User'),
76
78
     u'subscribed': u'True', u'type': ControlBackend.SHARE_TYPE,
77
79
     u'display_name': u're'},
78
80
]