~nataliabidart/ubuntuone-windows-installer/stable-3-0-update-2.99.91

« back to all changes in this revision

Viewing changes to ubuntuone_installer/tests/__init__.py

Fixed Tests (LP: #882519).

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
"""The test suite for the Ubuntu One Installer"""
21
21
 
 
22
from twisted.internet import defer
 
23
 
22
24
from ubuntuone.devtools.testcase import TestCase as BaseTestCase
23
25
 
24
26
 
27
29
 
28
30
    assertIs = BaseTestCase.assertIdentical
29
31
 
 
32
    @defer.inlineCallbacks
30
33
    def setUp(self):
 
34
        yield super(TestCase, self).setUp()
31
35
        self._called = False
32
36
 
 
37
    @defer.inlineCallbacks
33
38
    def tearDown(self):
 
39
        yield super(TestCase, self).tearDown()
34
40
        self._called = False
35
41
 
36
42
    def _set_called(self, *args, **kwargs):