~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ui.py

  • Committer: John Arbash Meinel
  • Date: 2009-08-03 20:38:39 UTC
  • mto: This revision was merged to the branch mainline in revision 4592.
  • Revision ID: john@arbash-meinel.com-20090803203839-du9y39adazy9qdly
more updates to get things to build cleanly.

1) delete the release directories because it seems that gf.recipe.bzr doesn't
clean them up when you update to a new release.
2) fix 'clean-installer-all'. It is a lot more simple now, as we just nuke the
whole build-win32 directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
334
334
            None, stdout, stdout, factory.get_boolean, "foo")
335
335
 
336
336
 
337
 
class TestUIFactoryTests(TestCase):
338
 
 
339
 
    def test_test_ui_factory_progress(self):
340
 
        # there's no output; we just want to make sure this doesn't crash -
341
 
        # see https://bugs.edge.launchpad.net/bzr/+bug/408201
342
 
        ui = TestUIFactory()
343
 
        pb = ui.nested_progress_bar()
344
 
        pb.update('hello')
345
 
        pb.tick()
346
 
        pb.finished()
347
 
 
348
 
 
349
337
class CannedInputUIFactoryTests(TestCase):
350
338
    
351
339
    def test_canned_input_get_input(self):