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

  • Committer: Martin Pool
  • Date: 2006-01-18 13:45:53 UTC
  • mto: (1185.50.49 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1549.
  • Revision ID: mbp@sourcefrog.net-20060118134553-29e4f4aa94391a25
bump version to 0.7rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)