~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_revisiontree.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 16:43:12 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730164312-b025fd3ff0cee59e
rename  gpl.txt => COPYING.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
# Authors:  Robert Collins <robert.collins@canonical.com>
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
13
13
#
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
"""Tests for the RevisionTree class."""
19
19
 
20
 
from bzrlib import (
21
 
    errors,
22
 
    revision,
23
 
    )
24
20
import bzrlib
25
 
from bzrlib.inventory import ROOT_ID
26
21
from bzrlib.tests import TestCaseWithTransport
 
22
from bzrlib.tree import RevisionTree
27
23
 
28
24
 
29
25
class TestTreeWithCommits(TestCaseWithTransport):
51
47
            [self.rev_id],
52
48
            self.t.branch.repository.revision_tree(revid_2).get_parent_ids())
53
49
        # TODO commit a merge and check it is reported correctly.
54
 
 
55
 
        # the parents for a revision_tree(NULL_REVISION) are []:
56
 
        self.assertEqual([],
57
 
            self.t.branch.repository.revision_tree(
58
 
                revision.NULL_REVISION).get_parent_ids())
59
 
 
60
 
    def test_empty_no_root(self):
61
 
        null_tree = self.t.branch.repository.revision_tree(
62
 
            revision.NULL_REVISION)
63
 
        self.assertIs(None, null_tree.inventory.root)
64
 
 
65
 
    def test_get_file_mtime_ghost(self):
66
 
        file_id = iter(self.rev_tree).next()
67
 
        self.rev_tree.inventory[file_id].revision = 'ghostrev'
68
 
        self.assertRaises(errors.FileTimestampUnavailable, 
69
 
            self.rev_tree.get_file_mtime, file_id)