~ubuntuone-control-tower/ubuntu-sso-client/trunk

« back to all changes in this revision

Viewing changes to ubuntu_sso/qt/tests/test_ssl_dialog.py

Merged ssl-dialog into fix-credentials-text.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
# pylint: disable=W0212, C0103,
43
43
 
44
44
 
45
 
class SSLDialogTest(TestCase):
 
45
class SSLDialogTestCase(TestCase):
46
46
    """Test the ssl dialog."""
47
47
 
48
48
    @defer.inlineCallbacks
49
49
    def setUp(self):
50
50
        """Set the tests."""
51
 
        yield super(SSLDialogTest, self).setUp()
 
51
        yield super(SSLDialogTestCase, self).setUp()
52
52
        self.domain = 'test-domain'
53
53
        self.details = 'SSL details'
54
54
 
174
174
        return self
175
175
 
176
176
 
177
 
class ParseArgTest(TestCase):
 
177
class ParseArgTestCase(TestCase):
178
178
    """Test the parse of the args."""
179
179
 
180
180
    def test_parse_args(self):