~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_branch.py

  • Committer: Mark Hammond
  • Date: 2008-12-28 05:21:23 UTC
  • mfrom: (3920 +trunk)
  • mto: (3932.1.1 prepare-1.11)
  • mto: This revision was merged to the branch mainline in revision 3937.
  • Revision ID: mhammond@skippinet.com.au-20081228052123-f78xs5sbdkotshwf
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
from bzrlib.workingtree import WorkingTree
52
52
 
53
53
 
 
54
class TestTestCaseWithBranch(TestCaseWithBranch):
 
55
 
 
56
    def test_branch_format_matches_bzrdir_branch_format(self):
 
57
        bzrdir_branch_format = self.bzrdir_format.get_branch_format()
 
58
        self.assertIs(self.branch_format.__class__,
 
59
                      bzrdir_branch_format.__class__)
 
60
 
 
61
 
54
62
class TestBranch(TestCaseWithBranch):
55
63
 
56
64
    def test_create_tree_with_merge(self):