~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ui.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-22 07:59:56 UTC
  • mfrom: (1553.5.33 bzr.mbp.locks)
  • Revision ID: pqm@pqm.ubuntu.com-20060222075956-fb281c427e571da6
add LockDir and related fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        result = pb.note('t')
62
62
        self.assertEqual(None, result)
63
63
        self.assertEqual("t\n", stdout.getvalue())
64
 
        self.assertEqual("\r                                                                               \r", stderr.getvalue())
 
64
        # the exact contents will depend on the terminal width and we don't
 
65
        # care about that right now - but you're probably running it on at
 
66
        # least a 10-character wide terminal :)
 
67
        self.assertContainsRe(stderr.getvalue(), r'^\r {10,}\r$')