~thisfred/ubuntuone-control-panel/remove-urgency-on-focus

« back to all changes in this revision

Viewing changes to ubuntuone/controlpanel/integrationtests/__init__.py

  • Committer: eric.casteleijn at canonical
  • Date: 2011-04-07 19:00:54 UTC
  • mfrom: (122.2.7 ubuntuone-control-panel)
  • Revision ID: eric.casteleijn@canonical.com-20110407190054-59m4caclcdcqltam
remerged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
"""Integration tests for the Ubuntu One Control Panel."""
21
21
 
22
22
import dbus
23
 
import dbus.service
24
23
 
25
24
from ubuntuone.devtools.testcase import DBusTestCase as TestCase
26
25
 
31
30
    """A DBus exception to be used in tests."""
32
31
 
33
32
 
34
 
class MockDBusNoMethods(dbus.service.Object):
 
33
class MockDBusNoMethods(dbus_service.dbus.service.Object):
35
34
    """A mock that fails at the DBus layer (because it's got no methods!)."""
36
35
 
37
36