~ralsina/ubuntuone-control-panel/unique-3-0

« back to all changes in this revision

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

  • Committer: Tarmac
  • Author(s): Natalia B. Bidart, Diego Sarmentero, Rodney Dawes, Manuel de la Pena
  • Date: 2012-04-11 14:32:51 UTC
  • mfrom: (258.1.1 update-from-trunk)
  • Revision ID: tarmac-20120411143251-1ekwnpg4yp95a4vk
[Diego Sarmentero]

  - Restarting the wizard on current device removed.

[Natalia Bidart]

  - Check for updates when the main window is shown. On linux, this is a no-op.
    On windows, this will check for new versions of the software and will
    prompt the user for confirmation to install updates.
  - Make the LOADING_OVERLAY_MARKUP use a smaller font.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
        cls.kwargs = kw
211
211
        return cls.response
212
212
 
 
213
    @classmethod
 
214
    def question(cls, *a, **kw):
 
215
        """Simulate a question message."""
 
216
        cls.args = a
 
217
        cls.kwargs = kw
 
218
        return cls.response
 
219
 
213
220
    # Invalid name "setDetailedText", "setDefaultButton"
214
221
    # pylint: disable=C0103
215
222