~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branchbuilder.py

  • Committer: Samuel Bronson
  • Date: 2012-08-30 20:36:18 UTC
  • mto: (6015.57.3 2.4)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: naesten@gmail.com-20120830203618-y2dzw91nqpvpgxvx
Update INSTALL for switch to Python 2.6 and up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
            [rev_id1],
87
87
            branch.repository.get_revision(branch.last_revision()).parent_ids)
88
88
 
89
 
    def test_build_commit_parent_ids(self):
90
 
        """build_commit() takes a parent_ids argument."""
91
 
        builder = BranchBuilder(self.get_transport().clone('foo'))
92
 
        rev_id1 = builder.build_commit(
93
 
            parent_ids=["ghost"], allow_leftmost_as_ghost=True)
94
 
        rev_id2 = builder.build_commit(parent_ids=[])
95
 
        branch = builder.get_branch()
96
 
        self.assertEqual((1, rev_id2), branch.last_revision_info())
97
 
        self.assertEqual(
98
 
            ["ghost"],
99
 
            branch.repository.get_revision(rev_id1).parent_ids)
100
 
 
101
89
 
102
90
class TestBranchBuilderBuildSnapshot(tests.TestCaseWithMemoryTransport):
103
91