~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revisiontree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-16 14:03:54 UTC
  • mfrom: (2017.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060916140354-1a9932f525bb7182
(robertc) Add MemoryTree and TreeBuilder test helpers. Also test behavior of transport.has('/') which caused failures in this when merging, and as a result cleanup the sftp path normalisation logic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
            [self.rev_id],
48
48
            self.t.branch.repository.revision_tree(revid_2).get_parent_ids())
49
49
        # TODO commit a merge and check it is reported correctly.
 
50
 
 
51
        # the parents for a revision_tree(None) are []:
 
52
        self.assertEqual([],
 
53
            self.t.branch.repository.revision_tree(None).get_parent_ids())