/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1185.33.92 by Martin Pool
[patch] fix for 'bzr rm -v' (Wouter van Heyst)
1
from bzrlib.tests import TestCaseInTempDir
2
from bzrlib.branch import Branch
3
4
class TestRemove(TestCaseInTempDir):
5
    def test_remove_verbose(self):
6
        b = Branch.initialize(u'.')
7
        self.build_tree(['hello'])
8
        wt = b.working_tree() 
9
        wt.add(['hello'])
10
        wt.commit(message='add hello')
11
        eq = self.assertEquals
12
        wt.remove(['hello'], verbose=True)