~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: 2007-10-24 12:49:17 UTC
  • mfrom: (2935.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071024124917-xb75eckyxx6vkrlg
Makefile fixes - hooks.html generation & allow python to be overridden (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Tests for the RevisionTree class."""
19
19
 
 
20
from bzrlib import (
 
21
    revision,
 
22
    )
20
23
import bzrlib
21
24
from bzrlib.tests import TestCaseWithTransport
22
25
from bzrlib.tree import RevisionTree
47
50
            [self.rev_id],
48
51
            self.t.branch.repository.revision_tree(revid_2).get_parent_ids())
49
52
        # TODO commit a merge and check it is reported correctly.
 
53
 
 
54
        # the parents for a revision_tree(None) are []:
 
55
        self.assertEqual([],
 
56
            self.t.branch.repository.revision_tree(None).get_parent_ids())
 
57
 
 
58
    def test_empty_no_root(self):
 
59
        null_tree = self.t.branch.repository.revision_tree(
 
60
            revision.NULL_REVISION)
 
61
        self.assertIs(None, null_tree.inventory.root)