~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_info.py

  • Committer: Martin Pool
  • Date: 2006-05-10 03:49:42 UTC
  • mfrom: (1624.3.47 bzr.olaf.info)
  • mto: This revision was merged to the branch mainline in revision 1707.
  • Revision ID: mbp@sourcefrog.net-20060510034942-d317207825dff3c1
(merge olaf) info test improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
 
130
130
        # Branch and bind to standalone, needs upgrade to metadir
131
131
        # (creates backup as unknown)
132
 
        # XXX: I can't get this to work through API
133
 
        self.runbzr('branch standalone bound')
134
 
        #branch3 = branch1.bzrdir.sprout('bound').open_branch()
135
 
        self.runbzr('upgrade --format=metaweave bound')
136
 
        #bzrlib.upgrade.upgrade('bound', bzrlib.bzrdir.BzrDirMetaFormat1())
 
132
        branch1.bzrdir.sprout('bound')
 
133
        bzrlib.upgrade.upgrade('bound', bzrlib.bzrdir.BzrDirMetaFormat1())
137
134
        branch3 = bzrlib.bzrdir.BzrDir.open('bound').open_branch()
138
135
        branch3.bind(branch1)
139
136
        out, err = self.runbzr('info bound')