/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ui.py

  • Committer: Jelmer Vernooij
  • Date: 2009-10-20 10:43:50 UTC
  • mfrom: (4757 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4759.
  • Revision ID: jelmer@samba.org-20091020104350-mndvjaqp8y423wqd
merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    )
43
43
from bzrlib.ui import (
44
44
    CannedInputUIFactory,
45
 
    CLIUIFactory,
46
45
    SilentUIFactory,
47
46
    UIFactory,
48
47
    make_ui_for_terminal,
307
306
                'TERM=%r' % (term_type,))
308
307
 
309
308
 
310
 
class CLIUITests(TestCase):
311
 
 
312
 
    def test_cli_factory_deprecated(self):
313
 
        uif = self.applyDeprecated(deprecated_in((1, 18, 0)),
314
 
            CLIUIFactory,
315
 
            StringIO(), StringIO(), StringIO())
316
 
        self.assertIsInstance(uif, UIFactory)
317
 
 
318
 
 
319
309
class SilentUITests(TestCase):
320
310
 
321
311
    def test_silent_factory_get_password(self):