~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_upgrade.py

 * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
   behaviour. They use the existing serverless-mode and store no data
   locally. As such they are not suitable for use except in high bandwidth
   low latency environments like LAN's or local disk. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import os
27
27
import sys
28
28
 
29
 
import bzrlib.branch as branch
 
29
import bzrlib.branch
30
30
from bzrlib.branch import Branch
31
31
import bzrlib.bzrdir as bzrdir
32
32
import bzrlib.repository as repository
56
56
        t = control.open_workingtree()
57
57
        # tsk, peeking under the covers.
58
58
        self.failUnless(isinstance(control._format, bzrdir.BzrDirFormat6))
59
 
        self.failUnless(isinstance(b._format, branch.BzrBranchFormat4))
 
59
        self.failUnless(isinstance(b._format, bzrlib.branch.BzrBranchFormat4))
60
60
        self.failUnless(isinstance(r._format, repository.RepositoryFormat6))
61
61
        self.failUnless(isinstance(t._format, workingtree.WorkingTreeFormat2))
62
62
        rh = b.revision_history()