~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ui.py

Merge shell-like-tests into description resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
                'TERM=%r' % (term_type,))
306
306
 
307
307
 
308
 
class CLIUITests(tests.TestCase):
309
 
 
310
 
    def test_cli_factory_deprecated(self):
311
 
        StringIO = tests.StringIOWrapper
312
 
        uif = self.applyDeprecated(deprecated_in((1, 18, 0)),
313
 
            _mod_ui.CLIUIFactory,
314
 
            StringIO(), StringIO(), StringIO())
315
 
        self.assertIsInstance(uif, _mod_ui.UIFactory)
316
 
 
317
 
 
318
308
class SilentUITests(tests.TestCase):
319
309
 
320
310
    def test_silent_factory_get_password(self):