~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_commit_merge.py

(gz) Remove bzrlib/util/elementtree/ package (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
import os
19
19
 
20
 
from bzrlib import check, osutils
 
20
from bzrlib import (
 
21
    check,
 
22
    osutils,
 
23
    revision as _mod_revision,
 
24
    )
21
25
from bzrlib.errors import PointlessCommit
22
26
from bzrlib.tests import (
 
27
    TestCaseWithTransport,
 
28
    )
 
29
from bzrlib.tests.features import (
23
30
    SymlinkFeature,
24
 
    TestCaseWithTransport,
25
31
    )
26
32
 
27
33
 
53
59
        wty.commit('merge from x', rev_id='y@u-0-2', allow_pointless=False)
54
60
 
55
61
        self.assertEquals(by.revno(), 3)
56
 
        self.assertEquals(list(by.revision_history()),
57
 
                          [base_rev, 'y@u-0-1', 'y@u-0-2'])
 
62
        graph = wty.branch.repository.get_graph()
 
63
        self.addCleanup(wty.lock_read().unlock)
 
64
        self.assertEquals(list(
 
65
            graph.iter_lefthand_ancestry(by.last_revision(),
 
66
                [_mod_revision.NULL_REVISION])),
 
67
            ['y@u-0-2', 'y@u-0-1', base_rev])
58
68
        rev = by.repository.get_revision('y@u-0-2')
59
69
        self.assertEquals(rev.parent_ids,
60
70
                          ['y@u-0-1', 'x@u-0-1'])