~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/teststatus.py

import scotts non verbose commit fix to allow non pointless commits

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
        tof = StringIO()
42
42
        self.build_tree(['hello.c', 'bye.c'])
 
43
        b.add_pending_merge('pending@pending-0-0')
43
44
        show_status(b, to_file=tof)
44
45
        tof.seek(0)
45
46
        self.assertEquals(tof.readlines(),
46
47
                          ['unknown:\n',
47
48
                           '  bye.c\n',
48
49
                           '  hello.c\n',
 
50
                           'pending merges:\n',
 
51
                           '  pending@pending-0-0\n'
49
52
                           ])
50
53