/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/branch_implementations/test_branch.py

  • Committer: Robert Collins
  • Date: 2009-02-20 08:40:02 UTC
  • mfrom: (4025 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4026.
  • Revision ID: robertc@robertcollins.net-20090220084002-e49vh0sxlkxhzt2m
Resolve NEWS conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        self.assertIs(self.branch_format.__class__,
59
59
                      bzrdir_branch_format.__class__)
60
60
 
 
61
    def test_make_branch_gets_expected_format(self):
 
62
        branch = self.make_branch('.')
 
63
        self.assertIs(self.branch_format.__class__,
 
64
            branch._format.__class__)
 
65
 
61
66
 
62
67
class TestBranch(TestCaseWithBranch):
63
68