/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_log.py

  • Committer: Vincent Ladeuil
  • Date: 2009-05-05 12:27:06 UTC
  • mto: (4343.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4344.
  • Revision ID: v.ladeuil+lp@free.fr-20090505122706-hha5brmq94mld5cb
Some cleanups.

* bzrlib/tests/blackbox/test_logformats.py: 
Fix import, use a proper setUp method.

* bzrlib/tests/test_log.py:
(LogCatcher.__init__): Fix comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
class LogCatcher(log.LogFormatter):
46
46
    """Pull log messages into list rather than displaying them.
47
47
 
48
 
    For ease of testing we save log messages here rather than actually
49
 
    formatting them, so that we can precisely check the result without
50
 
    being too dependent on the exact formatting.
51
 
 
52
 
    We should also test the LogFormatter.
 
48
    For ease of testing we save logged revisions here rather than actually
 
49
    formatting anything, so that we can precisely check the result without
 
50
    being dependent on the exact formatting.
53
51
    """
54
52
 
55
53
    supports_delta = True
 
54
#    supports_merge_revisions = True
56
55
 
57
56
    def __init__(self):
58
57
        super(LogCatcher, self).__init__(to_file=None)