~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revisiontree.py

  • Committer: Robert Collins
  • Date: 2007-07-04 08:08:13 UTC
  • mfrom: (2572 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2587.
  • Revision ID: robertc@robertcollins.net-20070704080813-wzebx0r88fvwj5rq
Merge bzr.dev.

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)