~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ancestry.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from bzrlib.tests import TestCaseWithMemoryTransport
23
23
from bzrlib.branch import Branch
24
24
from bzrlib.branchbuilder import BranchBuilder
 
25
from bzrlib.revision import is_ancestor
25
26
 
26
27
 
27
28
class TestAncestry(TestCaseWithMemoryTransport):
41
42
            rev_id_two, branch)
42
43
        self.assertAncestryEqual([None, rev_id_one], rev_id_one, branch)
43
44
 
 
45
    def test_none_is_ancestor_empty_branch(self):
 
46
        branch = self.make_branch('.')
 
47
        self.assertTrue(is_ancestor('null:', 'null:', branch))
 
48
 
 
49
    def test_none_is_ancestor_non_empty_branch(self):
 
50
        builder = BranchBuilder(self.get_transport())
 
51
        rev_id = builder.build_commit()
 
52
        branch = builder.get_branch()
 
53
        self.assertTrue(is_ancestor('null:', 'null:', branch))
 
54
        self.assertTrue(is_ancestor(rev_id, 'null:',  branch))
 
55
        self.assertFalse(is_ancestor('null:', rev_id, branch))
 
56
 
 
57
 
44
58
# TODO: check that ancestry is updated to include indirectly merged revisions