~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Benoît Pierre
  • Date: 2008-12-02 21:21:45 UTC
  • mfrom: (3878 +trunk)
  • mto: (4056.1.1 trunk2)
  • mto: This revision was merged to the branch mainline in revision 4058.
  • Revision ID: benoit.pierre@gmail.com-20081202212145-e2lr5ec5vyu0xp13
Merge with upstream.

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):