~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-10-15 16:32:29 UTC
  • mfrom: (1731.1.67 unique-root)
  • Revision ID: pqm@pqm.ubuntu.com-20061015163229-648b1f2ebe692136
New trees have unique root ids

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
51
54
        # the parents for a revision_tree(None) are []:
52
55
        self.assertEqual([],
53
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)