~vila/bzr/583667-lp-no-edge

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ui.py

  • Committer: Vincent Ladeuil
  • Date: 2010-11-26 15:24:36 UTC
  • Revision ID: v.ladeuil+lp@free.fr-20101126152436-766a5sbsgv9kn2kf
Fix all comments where bugs.edge.launchpad.net was used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
366
366
 
367
367
    def test_test_ui_factory_progress(self):
368
368
        # there's no output; we just want to make sure this doesn't crash -
369
 
        # see https://bugs.edge.launchpad.net/bzr/+bug/408201
 
369
        # see https://bugs.launchpad.net/bzr/+bug/408201
370
370
        ui = TestUIFactory()
371
371
        pb = ui.nested_progress_bar()
372
372
        pb.update('hello')
375
375
 
376
376
 
377
377
class CannedInputUIFactoryTests(TestCase):
378
 
    
 
378
 
379
379
    def test_canned_input_get_input(self):
380
380
        uif = CannedInputUIFactory([True, 'mbp', 'password'])
381
381
        self.assertEqual(uif.get_boolean('Extra cheese?'), True)