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

  • Committer: Martin Pool
  • Date: 2007-03-23 07:58:54 UTC
  • mfrom: (2374 +trunk)
  • mto: (2323.5.2 0.15)
  • mto: This revision was merged to the branch mainline in revision 2390.
  • Revision ID: mbp@sourcefrog.net-20070323075854-5o2n6k8a8kuejges
merge jam's integrated changes from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
        BranchFormat.unregister_format(format)
176
176
        self.make_branch_and_tree('bar')
177
177
 
178
 
    def test_checkout_format(self):
179
 
        branch = self.make_repository('repository', shared=True)
180
 
        branch = self.make_branch('repository/branch',
181
 
            format='metaweave')
182
 
        tree = branch.create_checkout('checkout')
183
 
        self.assertIs(tree.branch.__class__, _mod_branch.BzrBranch5)
184
 
 
185
178
 
186
179
class TestBranch6(TestCaseWithTransport):
187
180