~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/versioning.py

Merge from mpool.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
from bzrlib.selftest import BzrTestBase, TestCaseInTempDir
26
26
from bzrlib.branch import Branch
27
 
 
28
 
import logging
29
 
logger = logging.getLogger('bzr.test.versioning')
30
 
debug = logger.debug
 
27
from bzrlib.trace import mutter
31
28
 
32
29
 
33
30
class TestVersioning(TestCaseInTempDir):
39
36
        self.run_bzr('mkdir', 'foo')
40
37
        self.assert_(os.path.isdir('foo'))
41
38
 
42
 
        self.run_bzr('mkdir', 'foo', retcode=2)
 
39
        self.run_bzr('mkdir', 'foo', retcode=3)
43
40
 
44
41
        from bzrlib.diff import compare_trees
45
42
        from bzrlib.branch import Branch
142
139
 
143
140
        The upgrade should be a no-op."""
144
141
        b = Branch.open('.')
145
 
        debug('branch has %d revisions', b.revno())
 
142
        mutter('branch has %d revisions', b.revno())
146
143
        
147
 
        debug('check branch...')
 
144
        mutter('check branch...')
148
145
        from bzrlib.check import check
149
146
        check(b, False)
150
147
 
170
167
        for fn in ('a/one', 'b/two', 'top'):
171
168
            file(fn, 'w').write('new contents')
172
169
            
173
 
        debug('start selective subdir commit')
 
170
        mutter('start selective subdir commit')
174
171
        run_bzr('commit', 'a', '-m', 'commit a only')
175
172
        
176
173
        old = b.revision_tree(b.get_rev_id(1))